summaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2018-10-09 11:04:19 +0200
committerGitHub <noreply@github.com>2018-10-09 11:04:19 +0200
commit16056cf0c25d5839ce8af44fb5d106e38aae4d16 (patch)
treed619acb6076c88b45987e85197b43cc87d124b39 /searchcore
parent4617a9e9af6ff36d4b2e40b4cb6f89446f49954f (diff)
parent2e13757ec7e6df7b96bb53dee327de3286ebda4c (diff)
Merge pull request #7249 from vespa-engine/balder/expose-exception-information
Expose exception information. If totally unknown, generate core.
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/apps/fdispatch/fdispatch.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/searchcore/src/apps/fdispatch/fdispatch.cpp b/searchcore/src/apps/fdispatch/fdispatch.cpp
index cd3ef3b7550..0aa16260737 100644
--- a/searchcore/src/apps/fdispatch/fdispatch.cpp
+++ b/searchcore/src/apps/fdispatch/fdispatch.cpp
@@ -113,9 +113,6 @@ FastS_FDispatchApp::Main()
} catch (std::exception &e) {
LOG(error, "got exception during init: %s", e.what());
exitCode = 1;
- } catch (...) {
- LOG(error, "got exception during init");
- exitCode = 1;
}
LOG(debug, "Deleting fdispatch");