[ISSUE #5726] VerifyDelay should break the loop when matched the delayed message. (#5727)

This commit is contained in:
xiaoyifang
2022-12-18 15:23:16 +08:00
committed by GitHub
parent 81e3648e3f
commit 4fdf91f446
@@ -90,6 +90,7 @@ public class VerifyUtils {
if (time < delayTimeMills || time > nextLevelDelayTimeMills) {
delay = false;
logger.info(String.format("delay error:%s", Math.abs(time - delayTimeMills)));
break;
}
}
return delay;