mirror of https://github.com/apache/lucene.git
SOLR-10643: Fix typo in exception message
This commit is contained in:
parent
2590a430f5
commit
4ec1bfb54f
|
@ -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();
|
||||||
|
|
Loading…
Reference in New Issue