summaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorGeir Storli <geirst@yahoo-inc.com>2016-10-13 13:10:13 +0200
committerGeir Storli <geirst@yahoo-inc.com>2016-10-13 13:10:13 +0200
commit24bd9b91245220a265d3af5a4245c8b7a7f682fa (patch)
tree5d67507eddda123c11e7f5eaa82dd6e076bf1a99 /searchcore
parent203aaeda425761861d75cbcb0ca446bd569e040d (diff)
Fix return value in prepareRestart().
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/vespa/searchcore/proton/server/proton.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/server/proton.cpp b/searchcore/src/vespa/searchcore/proton/server/proton.cpp
index f576e53e96b..b48ba6e50e0 100644
--- a/searchcore/src/vespa/searchcore/proton/server/proton.cpp
+++ b/searchcore/src/vespa/searchcore/proton/server/proton.cpp
@@ -865,7 +865,7 @@ Proton::prepareRestart()
std::make_shared<PrepareRestartFlushStrategy>(
createPrepareRestartConfig(configSnapshot->getProtonConfig()));
_flushEngine->setStrategy(strategy);
- return false;
+ return true;
}
void