refs #7175
Change-Id: If9505ec6b79aeee38971f523bb6f1909493abd81
boolean gotMutex = impl.tryAcquireMutex();
boolean done = false;
- // TODO: fix this properly pleease
int count = 0;
+ long startTime = 0;
while (!done) {
if (gotMutex || borrowMutex) {
runWithMutex();
done = true;
} else {
- if (count % 100 == 0)
+ if (count % 10 == 0) {
+ // Taking too long, sleep for a while.
LOGGER.warn("Retry mutex acquire");
+ try {
+ Thread.sleep(10);
+ } catch (InterruptedException e) {
+ }
+ }
gotMutex = impl.tryAcquireMutex();
- count++;
+ long currentTime = System.currentTimeMillis();
+ if ((currentTime - startTime) > 10) {
+ startTime = currentTime;
+ count++;
+ }
}
}