summaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@broadpark.no>2020-10-16 12:44:55 +0200
committerTor Egge <Tor.Egge@broadpark.no>2020-10-16 12:45:19 +0200
commita91728fd900d5c0ef9a0508540802eb86e24ce90 (patch)
tree5af00e16896ba98ac0114ad2cfd9c865a32dba9c /searchcore
parent1e7398e49cada7ab43b79752d8fba9a1b72344a1 (diff)
Remove search::SigBusHandler.
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/apps/proton/proton.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/searchcore/src/apps/proton/proton.cpp b/searchcore/src/apps/proton/proton.cpp
index 691a61401de..05e0ea71443 100644
--- a/searchcore/src/apps/proton/proton.cpp
+++ b/searchcore/src/apps/proton/proton.cpp
@@ -3,7 +3,6 @@
#include <vespa/searchcore/proton/server/proton.h>
#include <vespa/storage/storageserver/storagenode.h>
#include <vespa/searchlib/util/statefile.h>
-#include <vespa/searchlib/util/sigbushandler.h>
#include <vespa/searchlib/util/ioerrorhandler.h>
#include <vespa/metrics/metricmanager.h>
#include <vespa/vespalib/util/signalhandler.h>
@@ -167,7 +166,6 @@ App::Main()
LOG(debug, "serviceidentity: '%s'", params.serviceidentity.c_str());
LOG(debug, "subscribeTimeout: '%" PRIu64 "'", params.subscribeTimeout);
std::unique_ptr<search::StateFile> stateFile;
- std::unique_ptr<search::SigBusHandler> sigBusHandler;
std::unique_ptr<search::IOErrorHandler> ioErrorHandler;
protonUP = std::make_unique<proton::Proton>(params.identity, _argc > 0 ? _argv[0] : "proton", std::chrono::milliseconds(params.subscribeTimeout));
proton::Proton & proton = *protonUP;
@@ -185,7 +183,6 @@ App::Main()
if (stateIsDown(stateString)) {
LOG(error, "proton state string is %s", stateString.c_str());
}
- sigBusHandler = std::make_unique<search::SigBusHandler>(stateFile.get());
ioErrorHandler = std::make_unique<search::IOErrorHandler>(stateFile.get());
if ( ! params.serviceidentity.empty()) {
proton.getMetricManager().init(params.serviceidentity, proton.getThreadPool());