Your message dated Tue, 31 Dec 2013 17:12:00 -0500
with message-id 
<CANg8-dCVe71XBwj9A6nPKcb9sd-GJu+=dumltdom4jn5wbs...@mail.gmail.com>
and subject line Closing bug 696715
has caused the Debian Bug report #696715,
regarding bitcoin-qt: Should not exit when disk space is low
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
696715: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=696715
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: bitcoind
Version: 0.7.2-1

The bitcoin client exits when the disk space is running low while
downloading blocks.  This is not the most elegant way to handle it, as
the daemon from a user perspective just disappers without a trace.  A
better way would be to pause the block downloading until the disk space
situation improves.  The CheckDiskSpace() function in src/main.cpp is
the one triggering this behaviour.  It contain this code:

    // Check for nMinDiskSpace bytes (currently 50MB)
    if (nFreeBytesAvailable < nMinDiskSpace + nAdditionalBytes)
    {
        fShutdown = true;
        string strMessage = _("Warning: Disk space is low!");
        strMiscWarning = strMessage;
        printf("*** %s\n", strMessage.c_str());
        uiInterface.ThreadSafeMessageBox(strMessage, "Bitcoin", 
CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | 
CClientUIInterface::MODAL);
        StartShutdown();
        return false;
    }

I noticed the problem with bitcoin-qt, where a dialog about "disk full"
is shown and when I click 'OK' the program just disappears.  The code
seem to affect bitcoind too.

-- 
Happy hacking
Petter Reinholdtsen

--- End Message ---
--- Begin Message ---
Thanks Peter,

This bug is better handled upstream than in Debian.
Please see:
https://github.com/bitcoin/bitcoin/

--- End Message ---

Reply via email to