summaryrefslogtreecommitdiffstats
path: root/storage
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@broadpark.no>2019-08-06 12:14:59 +0200
committerTor Egge <Tor.Egge@broadpark.no>2019-08-06 12:14:59 +0200
commitabb934f91cc30700f3f38ea6dba2fe3bb75dd036 (patch)
treef178e146ad978c5e3f9e6d980f0954725255716b /storage
parentf8efaab3d1c8116afc1dc2b3cdf65248ede5c58e (diff)
Use std::_Exit instead of std::quick_exit.
Diffstat (limited to 'storage')
-rw-r--r--storage/src/vespa/storage/frameworkimpl/status/statuswebserver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/src/vespa/storage/frameworkimpl/status/statuswebserver.cpp b/storage/src/vespa/storage/frameworkimpl/status/statuswebserver.cpp
index e49beb79fde..3c2d040010c 100644
--- a/storage/src/vespa/storage/frameworkimpl/status/statuswebserver.cpp
+++ b/storage/src/vespa/storage/frameworkimpl/status/statuswebserver.cpp
@@ -59,7 +59,7 @@ void StatusWebServer::configure(std::unique_ptr<vespa::config::content::core::St
} catch (const vespalib::PortListenException & e) {
LOG(error, "Failed listening to network port(%d) with protocol(%s): '%s', giving up and restarting.",
e.get_port(), e.get_protocol().c_str(), e.what());
- std::quick_exit(17);
+ std::_Exit(17);
}
// Now that we know config update went well, update internal state
_port = server->getListenPort();