We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4faaf58 commit 668ca8fCopy full SHA for 668ca8f
src/main/java/org/opentripplanner/updater/GraphUpdaterManager.java
@@ -228,12 +228,12 @@ private void reportReadinessForUpdaters() {
228
}
229
//noinspection BusyWait
230
Thread.sleep(1000);
231
- } catch (RuntimeException e) {
232
- LOG.error(e.getMessage(), e);
233
} catch (InterruptedException e) {
234
Thread.currentThread().interrupt();
235
otpIsShuttingDown = true;
236
LOG.info("OTP is shutting down, cancelling wait for updaters readiness.");
+ } catch (Exception e) {
+ LOG.error(e.getMessage(), e);
237
238
239
});
0 commit comments