[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#32895: file progress reporter crashes on small files
From: |
Ludovic Courtès |
Subject: |
bug#32895: file progress reporter crashes on small files |
Date: |
Wed, 03 Oct 2018 23:08:54 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux) |
Hello,
Ricardo Wurmus <address@hidden> skribis:
> Ludovic Courtès <address@hidden> writes:
>
>> Hello,
>>
>> Ricardo Wurmus <address@hidden> skribis:
>>
>>> guix/progress.scm:214:25: In procedure display-download-progress:
>>> In procedure /: Wrong type argument in position 1: #f
>>>
>>> This happens because “transferred” in the “else” branch of (@ (guix
>>> progress) display-download-progress) is #f instead of a number. This
>>> could be the result of running string->number on an invalid string in
>>> “print-build-event”.
>>
>> Indeed, that seems to be the case. This would mean we’re emitting an
>> incorrect build trace.
>>
>> Do you have the exact command to reproduce it?
>
> Unfortunately, I don’t.
Or do you have the log around? If you run, say:
grep -r "download-progress .*#f" /var/log/guix/drvs
?
Looking at the code, I think only ‘progress-reporter/trace’ emits those
traces and only through calls to ‘dump-port*’, and I don’t see where
this #f could come from.
TIA,
Ludo’.