mirror of
https://github.com/apache/activemq-artemis.git
synced 2025-02-06 10:09:01 +00:00
925e338874
This test is spinning a concurrent call on getDirectBindings Since I added a synchronization point to get the Bindings the test could be taking up to 5 seconds, being a variance between 500ms and 5 seconds. Adding Thread.sleep(1) on this loop solved the issue as it is now letting other threads to do work since I'm starting more executors than cores I have on my box.