forked from lthn/blockchain
temporary disable daemon stop on low free space due to issue #133
This commit is contained in:
parent
5dabc72bda
commit
ac8401db73
1 changed files with 6 additions and 0 deletions
|
|
@ -75,10 +75,16 @@ struct core_critical_error_handler_t : public currency::i_critical_error_handler
|
|||
|
||||
LOG_ERROR(ENDL << ENDL << "Free space at data directory is critically low (" << available / (1024 * 1024) << " MB, while " << required / (1024 * 1024) << " MB is required), daemon will stop immediately" << ENDL << ENDL);
|
||||
|
||||
/*
|
||||
temporary disable daemon stop due to issue #133
|
||||
*/
|
||||
return false;
|
||||
/*
|
||||
// stop handling
|
||||
dch.stop_handling();
|
||||
p2psrv.send_stop_signal();
|
||||
return true; // the caller must stop processing
|
||||
*/
|
||||
}
|
||||
|
||||
daemon_commands_handler& dch;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue