Github user geomacy commented on a diff in the pull request:
https://github.com/apache/brooklyn-server/pull/443#discussion_r88697566
--- Diff:
core/src/main/java/org/apache/brooklyn/entity/group/DynamicClusterImpl.java ---
@@ -1040,14 +1077,80 @@ protected void discardNode(Entity entity) {
protected void stopAndRemoveNode(Entity member) {
removeMember(member);
-
try {
if (member instanceof Startable) {
- Task<?> task = member.invoke(Startable.STOP,
Collections.<String,Object>emptyMap());
+ Task<?> task = newThrottledEffectorTask(member,
Startable.STOP, Collections.<String, Object>emptyMap());
task.getUnchecked();
}
} finally {
Entities.unmanage(member);
}
}
+
+ protected <T> Task<?> newThrottledEffectorTask(Entity target,
Effector<T> effector, Map<?, ?> arguments) {
+ return newThrottledEffectorTask(target, effector, arguments,
false);
+ }
+
+ protected <T> Task<?> newThrottledEffectorTask(Entity target,
Effector<T> effector, Map<?, ?> arguments, boolean isPrivileged) {
+ final Semaphore permit = childTaskSemaphore;
--- End diff --
why the local variable?
---
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.
---