Github user neykov commented on a diff in the pull request:
https://github.com/apache/brooklyn-server/pull/539#discussion_r98198377
--- Diff:
core/src/main/java/org/apache/brooklyn/core/sensor/ReleaseableLatch.java ---
@@ -56,8 +60,11 @@
}
private static class MaxConcurrencyLatch implements
ReleaseableLatch {
+ private static final Logger LOG =
LoggerFactory.getLogger(MaxConcurrencyLatch.class);
+
private int permits;
private transient final Semaphore sem;
+ private transient final Set<Entity> ownerEntities = new
ConcurrentHashSet<Entity>();
--- End diff --
Good spot, haven't considered this case. It's handled and covered by tests
though - there's a `readResolve` further down. Added a comment.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---