From d4a2401c68a1e335bbc3fbdc57c4ded08bda969b Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Thu, 7 Feb 2013 19:25:51 -0800 Subject: [PATCH] Change free space threshold to 512MB. --- src/cpp/ripple/Application.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cpp/ripple/Application.cpp b/src/cpp/ripple/Application.cpp index 69810e91f..5eff862f8 100644 --- a/src/cpp/ripple/Application.cpp +++ b/src/cpp/ripple/Application.cpp @@ -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(); }