summaryrefslogtreecommitdiffstats
path: root/filedistribution
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2016-09-30 14:06:48 +0200
committerGitHub <noreply@github.com>2016-09-30 14:06:48 +0200
commit0925099cf17a70fbe318cf39c67816d1e704d29e (patch)
treeee075ae038994a6f81dd1ec6b4723366cf5d7bd2 /filedistribution
parentd06d816460d6c1de4f664488aa9b8a8ac324d42a (diff)
Revert "catch and abort on unknown exception to avoid std::thread doing it si…"
Diffstat (limited to 'filedistribution')
-rw-r--r--filedistribution/src/vespa/filedistribution/distributor/filedistributortrackerimpl.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/filedistribution/src/vespa/filedistribution/distributor/filedistributortrackerimpl.cpp b/filedistribution/src/vespa/filedistribution/distributor/filedistributortrackerimpl.cpp
index 32368eca54a..6420dfd6006 100644
--- a/filedistribution/src/vespa/filedistribution/distributor/filedistributortrackerimpl.cpp
+++ b/filedistribution/src/vespa/filedistribution/distributor/filedistributortrackerimpl.cpp
@@ -166,9 +166,6 @@ void asioWorker(asio::io_service& ioService)
ioService.run();
} catch (const ZKConnectionLossException & e) {
LOG(info, "Connection loss in asioWorker thread, resuming. %s", e.what());
- } catch (const std::exception & e) {
- LOG(fatal, "Unknow exception in asioWorker. %s", e.what());
- assert(false);
}
}
}