Skip to content

Commit

Permalink
Make synchronization of activationLatch consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
Francisco Borges committed Nov 20, 2012
1 parent 1e1e1df commit 8c3927e
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1565,7 +1565,10 @@ public void run()
{
throw HornetQMessageBundle.BUNDLE.nodeIdNull();
}
activationLatch.countDown();
synchronized (activationLatchGuard)
{
activationLatch.countDown();
}
}

/**
Expand Down

0 comments on commit 8c3927e

Please sign in to comment.