From 253485e3db9bd170714c2780b648a1041a5007a6 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Wed, 6 Mar 2013 17:01:15 -0800 Subject: [PATCH] Workaround for whatever the real bug is. --- src/cpp/ripple/JobQueue.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpp/ripple/JobQueue.cpp b/src/cpp/ripple/JobQueue.cpp index 1522ee85f..0582ed7eb 100644 --- a/src/cpp/ripple/JobQueue.cpp +++ b/src/cpp/ripple/JobQueue.cpp @@ -211,7 +211,7 @@ void JobQueue::shutdown() void JobQueue::setThreadCount(int c) { // set the number of thread serving the job queue to precisely this number if (theConfig.RUN_STANDALONE) - c = 1; + c = 2; else if (c == 0) { c = boost::thread::hardware_concurrency();