GNU bug report logs -
#40668
[PATCH] installer: Fix backtrace display.
Previous Next
Reported by: Mathieu Othacehe <m.othacehe <at> gmail.com>
Date: Thu, 16 Apr 2020 17:35:01 UTC
Severity: normal
Tags: patch
Done: Mathieu Othacehe <m.othacehe <at> gmail.com>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 40668 in the body.
You can then email your comments to 40668 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#40668
; Package
guix-patches
.
(Thu, 16 Apr 2020 17:35:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Mathieu Othacehe <m.othacehe <at> gmail.com>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Thu, 16 Apr 2020 17:35:01 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
The 'syslog' macro cannot be resolved in the pre-unwind-handler
context. Failed to resolve 'syslog' in this context resulted in the swallowing
of all installation errors.
Fixes 5c04b00cf463a543b8ffc9eb55991f6b4cc145dd.
* gnu/installer.scm (installer-program): Do not try to resolve 'syslog' macro
in the pre-unwind-handler.
---
Hello,
Since the commit 5c04b00c, error reporting in the installer is broken. Sadly
this means that every error happening in the 1.1.0 release will result in an
installer restart, without any error information reporting.
Thanks,
Mathieu
gnu/installer.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/installer.scm b/gnu/installer.scm
index 1051ee1e5f..eba8a7d428 100644
--- a/gnu/installer.scm
+++ b/gnu/installer.scm
@@ -436,8 +436,9 @@ selected keymap."
#f)))
(const #f)
(lambda (key . args)
- (syslog "crashing due to uncaught exception: ~s ~s~%"
- key args)
+ ((@@ (gnu installer utils) syslog)
+ "crashing due to uncaught exception: ~s ~s~%"
+ key args)
(let ((error-file "/tmp/last-installer-error"))
(call-with-output-file error-file
(lambda (port)
--
2.26.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#40668
; Package
guix-patches
.
(Fri, 17 Apr 2020 21:08:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 40668 <at> debbugs.gnu.org (full text, mbox):
Hello,
Mathieu Othacehe <m.othacehe <at> gmail.com> skribis:
> The 'syslog' macro cannot be resolved in the pre-unwind-handler
> context. Failed to resolve 'syslog' in this context resulted in the swallowing
> of all installation errors.
>
> Fixes 5c04b00cf463a543b8ffc9eb55991f6b4cc145dd.
>
> * gnu/installer.scm (installer-program): Do not try to resolve 'syslog' macro
> in the pre-unwind-handler.
[...]
> Since the commit 5c04b00c, error reporting in the installer is broken. Sadly
> this means that every error happening in the 1.1.0 release will result in an
> installer restart, without any error information reporting.
Oh, that’s terrible. :-/ Sorry about that.
> - (syslog "crashing due to uncaught exception: ~s ~s~%"
> - key args)
> + ((@@ (gnu installer utils) syslog)
> + "crashing due to uncaught exception: ~s ~s~%"
> + key args)
Please add (gnu installer utils) to the list of use-modules.
‘@@’ should only be used in extreme situations.
Thanks,
Ludo’.
Reply sent
to
Mathieu Othacehe <m.othacehe <at> gmail.com>
:
You have taken responsibility.
(Sat, 18 Apr 2020 15:47:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Mathieu Othacehe <m.othacehe <at> gmail.com>
:
bug acknowledged by developer.
(Sat, 18 Apr 2020 15:47:02 GMT)
Full text and
rfc822 format available.
Message #13 received at 40668-done <at> debbugs.gnu.org (full text, mbox):
Hey,
> Please add (gnu installer utils) to the list of use-modules.
> ‘@@’ should only be used in extreme situations.
Fixed and pushed!
Thanks,
Mathieu
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sun, 17 May 2020 11:24:06 GMT)
Full text and
rfc822 format available.
This bug report was last modified 5 years and 90 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.