Change free space threshold to 512MB.

This commit is contained in:
JoelKatz
2013-02-07 19:25:51 -08:00
parent aaad2f6edb
commit d4a2401c68

View File

@@ -288,9 +288,9 @@ void Application::sweep()
{
boost::filesystem::space_info space = boost::filesystem::space(theConfig.DATA_DIR);
if (space.available < (128 * 1024 * 1024))
if (space.available < (512 * 1024 * 1024))
{
cLog(lsFATAL) << "Remaining free disk space is less than 128MB";
cLog(lsFATAL) << "Remaining free disk space is less than 512MB";
theApp->stop();
}