Repository: stratos Updated Branches: refs/heads/stratos-4.1.x 84af827e2 -> 6e5cf0368
Remove unused variable in HealthStatisticsPublisher in PCA Project: http://git-wip-us.apache.org/repos/asf/stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/6e5cf036 Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/6e5cf036 Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/6e5cf036 Branch: refs/heads/stratos-4.1.x Commit: 6e5cf0368cff03185680fffb93931dd4194df294 Parents: 84af827 Author: Akila Perera <[email protected]> Authored: Mon Oct 12 14:04:53 2015 +0530 Committer: Akila Perera <[email protected]> Committed: Mon Oct 12 14:05:10 2015 +0530 ---------------------------------------------------------------------- .../src/main/python/cartridge.agent/cartridge.agent/healthstats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/stratos/blob/6e5cf036/components/org.apache.stratos.python.cartridge.agent/src/main/python/cartridge.agent/cartridge.agent/healthstats.py ---------------------------------------------------------------------- diff --git a/components/org.apache.stratos.python.cartridge.agent/src/main/python/cartridge.agent/cartridge.agent/healthstats.py b/components/org.apache.stratos.python.cartridge.agent/src/main/python/cartridge.agent/cartridge.agent/healthstats.py index eb140c0..69c2008 100644 --- a/components/org.apache.stratos.python.cartridge.agent/src/main/python/cartridge.agent/cartridge.agent/healthstats.py +++ b/components/org.apache.stratos.python.cartridge.agent/src/main/python/cartridge.agent/cartridge.agent/healthstats.py @@ -208,7 +208,7 @@ class HealthStatisticsPublisher: for publisher in self.publishers: publisher.publish(event) - def disconnect_publisher(self, publishers): + def disconnect_publisher(self): for publisher in self.publishers: publisher.disconnect()
