REQ-2481: 添加删除日志表的job

This commit is contained in:
yanglin 2024-05-31 16:33:59 +08:00
parent be997df024
commit 1d60987414

View File

@ -53,7 +53,7 @@ public class SendExecutor<T> implements Supplier<ExecResult> {
long execStart = System.currentTimeMillis();
while (!sendManager.isInterrupted() && !queue().isEmpty()) {
if (!rateLimiter.tryAcquire(1000, TimeUnit.MILLISECONDS)) {
//队列可能消息完了, 及早退出
//队列可能被消费完了, 及早退出
MiscUtils.sleepQuietly(100, TimeUnit.MILLISECONDS);
continue;
}