Github user alasdairhodge commented on a diff in the pull request:
https://github.com/apache/incubator-brooklyn/pull/547#discussion_r26207604
--- Diff:
core/src/main/java/brooklyn/management/internal/EntityManagementSupport.java ---
@@ -315,6 +315,9 @@ public void
onManagementStopping(ManagementTransitionInfo info) {
public void onManagementStopped(ManagementTransitionInfo info) {
synchronized (this) {
+ if (managementContext == null &&
nonDeploymentManagementContext.getMode() ==
NonDeploymentManagementContext.NonDeploymentManagementContextMode.MANAGEMENT_STOPPED)
{
+ return;
+ }
--- End diff --
Worth a static import, of the inner class at least.
---
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.
---