SOLR-10643: Fix typo in exception message

This commit is contained in:
Shalin Shekhar Mangar 2017-07-14 13:04:03 +05:30
parent 2590a430f5
commit 4ec1bfb54f
1 changed files with 1 additions and 1 deletions

View File

@ -354,7 +354,7 @@ public class ScheduledTriggers implements Closeable {
} catch (Exception e) { } catch (Exception e) {
// log but do not propagate exception because an exception thrown from a scheduled operation // log but do not propagate exception because an exception thrown from a scheduled operation
// will suppress future executions // will suppress future executions
log.error("Unexpected execution from trigger: " + trigger.getName(), e); log.error("Unexpected exception from trigger: " + trigger.getName(), e);
} finally { } finally {
// checkpoint after each run // checkpoint after each run
trigger.saveState(); trigger.saveState();