Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 61E04200CD6 for ; Mon, 31 Jul 2017 19:18:04 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 607C9165924; Mon, 31 Jul 2017 17:18:04 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id A6D7A165922 for ; Mon, 31 Jul 2017 19:18:03 +0200 (CEST) Received: (qmail 1688 invoked by uid 500); 31 Jul 2017 17:18:02 -0000 Mailing-List: contact dev-help@brooklyn.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@brooklyn.apache.org Delivered-To: mailing list dev@brooklyn.apache.org Received: (qmail 1677 invoked by uid 99); 31 Jul 2017 17:18:02 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 31 Jul 2017 17:18:02 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 74E5AE02E0; Mon, 31 Jul 2017 17:18:02 +0000 (UTC) From: m4rkmckenna To: dev@brooklyn.apache.org Reply-To: dev@brooklyn.apache.org References: In-Reply-To: Subject: [GitHub] brooklyn-server pull request #782: Adds `PUT /applications/{appid}` Content-Type: text/plain Message-Id: <20170731171802.74E5AE02E0@git1-us-west.apache.org> Date: Mon, 31 Jul 2017 17:18:02 +0000 (UTC) archived-at: Mon, 31 Jul 2017 17:18:04 -0000 Github user m4rkmckenna commented on a diff in the pull request: https://github.com/apache/brooklyn-server/pull/782#discussion_r130405300 --- Diff: core/src/main/java/org/apache/brooklyn/core/mgmt/internal/LocalEntityManager.java --- @@ -670,23 +694,26 @@ private synchronized boolean manageNonRecursive(Entity e, ManagementTransitionMo Entity old = entitiesById.get(e.getId()); if (old!=null && mode.wasNotLoaded()) { - if (old.equals(e)) { + if (old == deproxyIfNecessary(e)) { log.warn("{} redundant call to start management of entity {}; ignoring", this, e); } else { - throw new IllegalStateException("call to manage entity "+e+" ("+mode+") but different entity "+old+" already known under that id at "+this); + throw new IdAlreadyExistsException("call to manage entity "+e+" ("+mode+") but " + + "different entity "+old+" already known under that id '"+e.getId()+"' at "+this); } return false; } BrooklynLogging.log(log, BrooklynLogging.levelDebugOrTraceIfReadOnly(e), - "{} starting management of entity {}", this, e); + "{} starting management of entity {}", this, e); Entity realE = toRealEntity(e); Entity oldProxy = entityProxiesById.get(e.getId()); Entity proxyE; if (oldProxy!=null) { if (mode.wasNotLoaded()) { - throw new IllegalStateException("call to manage entity "+e+" from unloaded state ("+mode+") but already had proxy "+oldProxy+" already known under that id at "+this); + throw new IdAlreadyExistsException("call to manage entity "+e+" from unloaded " --- End diff -- As above the exception text isnt returned so hard to recover from from --- 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 infrastructure@apache.org or file a JIRA ticket with INFRA. ---