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 b531885 commit 98f73e1Copy full SHA for 98f73e1
store/src/main/java/org/apache/rocketmq/store/timer/TimerMessageStore.java
@@ -1837,10 +1837,14 @@ public void run() {
1837
while (!this.isStopped()) {
1838
try {
1839
this.flush();
1840
- waitForRunning(storeConfig.getTimerFlushIntervalMs());
1841
} catch (Throwable e) {
1842
TimerMessageStore.LOGGER.error("Error occurred in " + getServiceName(), e);
1843
}
+ try {
1844
+ waitForRunning(storeConfig.getTimerFlushIntervalMs());
1845
+ } catch (Throwable e) {
1846
+ // ignore interrupt
1847
+ }
1848
1849
TimerMessageStore.LOGGER.info(this.getServiceName() + " service end");
1850
0 commit comments