You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@brooklyn.apache.org by al...@apache.org on 2014/12/16 22:00:39 UTC

[2/3] incubator-brooklyn git commit: Adds missing call to super.connectSensors() to BindDnsServerImpl

Adds missing call to super.connectSensors() to BindDnsServerImpl


Project: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/commit/e2298757
Tree: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/tree/e2298757
Diff: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/diff/e2298757

Branch: refs/heads/master
Commit: e2298757d1108dd5fb0d759842ecf7a8c1a36b67
Parents: 4123099
Author: Martin Harris <gi...@nakomis.com>
Authored: Tue Dec 16 20:22:10 2014 +0000
Committer: Martin Harris <gi...@nakomis.com>
Committed: Tue Dec 16 20:22:10 2014 +0000

----------------------------------------------------------------------
 .../main/java/brooklyn/entity/network/bind/BindDnsServerImpl.java   | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/e2298757/software/network/src/main/java/brooklyn/entity/network/bind/BindDnsServerImpl.java
----------------------------------------------------------------------
diff --git a/software/network/src/main/java/brooklyn/entity/network/bind/BindDnsServerImpl.java b/software/network/src/main/java/brooklyn/entity/network/bind/BindDnsServerImpl.java
index ccdb484..c34ffbf 100644
--- a/software/network/src/main/java/brooklyn/entity/network/bind/BindDnsServerImpl.java
+++ b/software/network/src/main/java/brooklyn/entity/network/bind/BindDnsServerImpl.java
@@ -178,6 +178,7 @@ public class BindDnsServerImpl extends SoftwareProcessImpl implements BindDnsSer
 
     @Override
     public void disconnectSensors() {
+        super.disconnectSensors();
         disconnectServiceUpIsRunning();
     }