summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRamesh Nachimuthu <rnachimu@redhat.com>2014-04-29 14:19:25 +0530
committerSahina Bose <sabose@redhat.com>2014-04-30 05:42:53 -0700
commit6fa90e73ddeb2a5df1e6ab01837a249274928ff6 (patch)
tree978aa35bf69de0acede3ea4a8f5e853dc8b47c1d /tests
parentc33ec5936f3ef9fffe9bafc01e08af5a18c46fa2 (diff)
autoconf: Use only brick path in brick service
Change the brick service description to "Brick Status - <brick-path>". Currently it is "Brick Status - <hostaddress>:<brick-path>". Same case for Brick utilization service also. Change-Id: I3924f15e3b8b86826c0019c5ab52bd371a970cf1 Signed-off-by: Ramesh Nachimuthu <rnachimu@redhat.com> Reviewed-on: http://review.gluster.org/7597 Reviewed-by: Sahina Bose <sabose@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/test_config_generator.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/test_config_generator.py b/tests/test_config_generator.py
index 8c79057..d8e8789 100644
--- a/tests/test_config_generator.py
+++ b/tests/test_config_generator.py
@@ -45,14 +45,12 @@ class TestGlusterNagiosConfManager(TestCaseBase):
def _verifyHostServices(self, hostConfig, hostData):
for brick in hostData['bricks']:
- serviceDesc = "Brick Status - %s:%s" % (hostData['hostname'],
- brick['brickpath'])
+ serviceDesc = "Brick Status - %s" % brick['brickpath']
service = self._findServiceInList(hostConfig['host_services'],
serviceDesc)
self.assertNotEqual(service, None,
"Brick status service is not created")
- serviceDesc = "Brick Utilization - %s:%s" % (hostData['hostname'],
- brick['brickpath'])
+ serviceDesc = "Brick Utilization - %s" % brick['brickpath']
service = self._findServiceInList(hostConfig['host_services'],
serviceDesc)
self.assertNotEqual(service, None,