Github user TomasHofman commented on a diff in the pull request:
https://github.com/apache/activemq-artemis/pull/2287#discussion_r240294762
--- Diff:
artemis-server/src/main/java/org/apache/activemq/artemis/core/server/impl/FileLockNodeManager.java
---
@@ -49,6 +49,8 @@
private static final byte NOT_STARTED = 'N';
+ private static final long LOCK_ACCESS_FAILURE_WAIT_TIME = 2000;
--- End diff --
I added another test to verify that `lockAcquisitionTimeout` is honored.
The only hard waiting time is 500ms on line 313, but that's the original
behavior. I can make that honor `lockAcquisitionTimeout` as well if desired.
---