GNU bug report logs

#52464 Backtrace during substitution

PackageSource(s)Maintainer(s)
guix PTS Buildd Popcon
Full log

Message #8 received at 52464@debbugs.gnu.org (full text, mbox, reply):

Received: (at 52464) by debbugs.gnu.org; 13 Dec 2021 14:49:01 +0000
From debbugs-submit-bounces@debbugs.gnu.org Mon Dec 13 09:49:01 2021
Received: from localhost ([127.0.0.1]:54509 helo=debbugs.gnu.org)
	by debbugs.gnu.org with esmtp (Exim 4.84_2)
	(envelope-from <debbugs-submit-bounces@debbugs.gnu.org>)
	id 1mwmdR-0003ff-05
	for submit@debbugs.gnu.org; Mon, 13 Dec 2021 09:49:01 -0500
Received: from laurent.telenet-ops.be ([195.130.137.89]:56520)
 by debbugs.gnu.org with esmtp (Exim 4.84_2)
 (envelope-from <maximedevos@telenet.be>) id 1mwmdO-0003fV-4v
 for 52464@debbugs.gnu.org; Mon, 13 Dec 2021 09:48:59 -0500
Received: from ptr-bvsjgyhxw7psv60dyze.18120a2.ip6.access.telenet.be
 ([IPv6:2a02:1811:8c09:9d00:3c5f:2eff:feb0:ba5a])
 by laurent.telenet-ops.be with bizsmtp
 id Vqov2600H4UW6Th01qovB4; Mon, 13 Dec 2021 15:48:56 +0100
Message-ID: <678bda5733120c81c914f2b86fd69919dcaa5f02.camel@telenet.be>
Subject: Re: bug#52464: Backtrace during substitution
From: Maxime Devos <maximedevos@telenet.be>
To: Lars-Dominik Braun <lars@6xq.net>, 52464@debbugs.gnu.org
Date: Mon, 13 Dec 2021 14:48:55 +0000
In-Reply-To: <Ybc9M6ojZ3/xjJ7J@noor.fritz.box>
References: <Ybc9M6ojZ3/xjJ7J@noor.fritz.box>
Content-Type: text/plain; charset="UTF-8"
User-Agent: Evolution 3.38.3-1 
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=telenet.be; s=r21;
 t=1639406936; bh=UNypjH54paaLEtP9mLNW8JTfo7WvOAqNuzzs9KeVpGY=;
 h=Subject:From:To:Date:In-Reply-To:References;
 b=AbBmsmurvywZGv6j3nISjH15VD4thO4T//WFThtGN+MI+zJ8gVPLPFB3T1i13k8uX
 +jaBidbb5D15gP9gLmLKmh5NayFXWF3AU8j8bt8NcdgAGiLONRlcgXe+g7tr5jpJFW
 y7g1oZn92Cda1IoUoqVhbvLfb3uvz9x+g+oNh5xB/5WcqlBbzBnP/8XRyCDVJXWtRV
 /ai1kRZ3MB1VgsrhulL7L3epG6n97Uh14+ddRfDQULEY2IuQyoZ1t9UQfCS/789njV
 BHOfEr/7vutcTbxIt3I87va8R4H/pUf47rPI+1UmvCDlvNe5K4ysv7NRwB0nqtmqOh
 CmmRekGMcBeuA==
X-Spam-Score: -0.7 (/)
X-Debbugs-Envelope-To: 52464
X-BeenThere: debbugs-submit@debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, 
 <mailto:debbugs-submit-request@debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit@debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request@debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, 
 <mailto:debbugs-submit-request@debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces@debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces@debbugs.gnu.org>
X-Spam-Score: -1.7 (-)
Hi,

Lars-Dominik Braun schreef op ma 13-12-2021 om 13:31 [+0100]:
> substituting /gnu/store/xbxrx9yqgqbv6949gl9v9h2wm2y1iwqh-scikit-
> image-0.18.1.tar.gz...
> downloading from 
> https://ci.guix.gnu.org/nar/xbxrx9yqgqbv6949gl9v9h2wm2y1iwqh-scikit-image-0.18.1.tar.gz
>  ...
>  scikit-image-0.18.1.tar.gz  28.3MiB 8.42GiB/s 00:00
> [################  ]  89.9%Backtrace:
>  [...]
> In guix/progress.scm:
>    223:17  2 (display-download-progress "scikit-image-0.18.1.tar.g@"
> …)
> In ice-9/boot-9.scm:
>   1685:16  1 (raise-exception _ #:continuable? _)
>   1685:16  0 (raise-exception _ #:continuable? _)
> 
> ice-9/boot-9.scm:1685:16: In procedure raise-exception:
> In procedure =: Wrong type argument in position 1: #f

I guess that means 'transferred' is #false somehow.
Looking at guix/status.scm, maybe the following is important:

>    (('download-progress item uri
>                         (= string->number size)
>                         (= string->number transferred))

string->number returns #f if the input is malformed, so I guess that
is what happens. I don't know _how_ that happens though.

Detecting #f somewhere and emitting a warning or error like
‘warning: ‘the malformed string’, representing the number of
transferred bytes, is malformed’ would be better. Fixing the underlying
error would be ideal.

I think I've seen this reported before, though I cannot find it again.

Greetings,
Maxime.





Send a report that this bug log contains spam.


debbugs.gnu.org maintainers <help-debbugs@gnu.org>. Last modified: Sun Dec 22 16:52:35 2024; Machine Name: wallace-server

GNU bug tracking system

Debbugs is free software and licensed under the terms of the GNU Public License version 2. The current version can be obtained from https://bugs.debian.org/debbugs-source/.

Copyright © 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson, 2005-2017 Don Armstrong, and many other contributors.