From 9a7ccf777ec29d82c6be6c2eab4e7ac8a1e9b1d0 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Mon, 28 Jan 2013 01:13:39 -0800 Subject: [PATCH] Fix a bug that can stall the acquire engine. --- src/cpp/ripple/LedgerMaster.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpp/ripple/LedgerMaster.cpp b/src/cpp/ripple/LedgerMaster.cpp index 2f52d9cfd..553a4e147 100644 --- a/src/cpp/ripple/LedgerMaster.cpp +++ b/src/cpp/ripple/LedgerMaster.cpp @@ -500,11 +500,11 @@ void LedgerMaster::tryPublish() } } + mTooFast = false; if (!mPubLedgers.empty() && !mPubThread) { theApp->getOPs().clearNeedNetworkLedger(); mPubThread = true; - mTooFast = false; theApp->getJobQueue().addJob(jtPUBLEDGER, boost::bind(&LedgerMaster::pubThread, this)); } }