cocodroid opened a new issue, #2145: URL: https://github.com/apache/shardingsphere-elasticjob/issues/2145
## Bug Report **For English only**, other languages will not accept. fail details:https://github.com/apache/shardingsphere-elasticjob/actions/runs/3330370892/jobs/5508768776  Before report a bug, make sure you have: - Searched open and closed [GitHub issues](https://github.com/apache/shardingsphere-elasticjob/issues). - Read documentation: [ElasticJob Doc](https://shardingsphere.apache.org/elasticjob/current/en/overview/). Please pay attention on issues you submitted, because we maybe need more details. If no response anymore and we cannot reproduce it on current information, we will **close it**. Please answer these questions before submitting your issue. Thanks! ### Which version of ElasticJob did you use? ### Which project did you use? ElasticJob-Lite or ElasticJob-Cloud? ### Expected behavior assertTrue(regCenterTime < updatedRegCenterTime); ==> true ### Actual behavior assertTrue(regCenterTime < updatedRegCenterTime); ==> false ### Reason analyze (If you can) ### Steps to reproduce the behavior. ### Example codes for reproduce this issue (such as a github link). @Test public void assertGetRegistryCenterTime() { long regCenterTime = zkRegCenter.getRegistryCenterTime("/_systemTime/current"); assertTrue(regCenterTime <= System.currentTimeMillis()); long updatedRegCenterTime = zkRegCenter.getRegistryCenterTime("/_systemTime/current"); assertTrue(regCenterTime < updatedRegCenterTime); } -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
