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 0AB12200D0A for ; Wed, 4 Oct 2017 17:21:28 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 0910C1609E2; Wed, 4 Oct 2017 15:21:28 +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 473741609D6 for ; Wed, 4 Oct 2017 17:21:27 +0200 (CEST) Received: (qmail 88221 invoked by uid 500); 4 Oct 2017 15:21:26 -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 88209 invoked by uid 99); 4 Oct 2017 15:21:26 -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; Wed, 04 Oct 2017 15:21:26 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 10893F571A; Wed, 4 Oct 2017 15:21:26 +0000 (UTC) From: ahgittin To: dev@brooklyn.apache.org Reply-To: dev@brooklyn.apache.org References: In-Reply-To: Subject: [GitHub] brooklyn-library pull request #126: Highlights and load Content-Type: text/plain Message-Id: <20171004152126.10893F571A@git1-us-west.apache.org> Date: Wed, 4 Oct 2017 15:21:26 +0000 (UTC) archived-at: Wed, 04 Oct 2017 15:21:28 -0000 Github user ahgittin commented on a diff in the pull request: https://github.com/apache/brooklyn-library/pull/126#discussion_r142703228 --- Diff: software/nosql/src/main/java/org/apache/brooklyn/entity/nosql/mongodb/sharding/MongoDBRouterClusterImpl.java --- @@ -56,12 +60,17 @@ public void start(Collection locations) { public static class MemberTrackingPolicy extends AbstractMembershipTrackingPolicy { @Override protected void onEntityEvent(EventType type, Entity member) { + defaultHighlightAction(type, entity); --- End diff -- this method overrides that method and doesn't call `super` so it has to redo it here, doesn't it? ---