Skip to content

Commit

Permalink
Changed Unmanage flow - incorporated review
Browse files Browse the repository at this point in the history
tendrl-bug-id: #841
Bugzilla-id: 1583590
Signed-off-by: Anmol Sachan <anmol13694@gmail.com>
  • Loading branch information
anmolsachan committed May 29, 2018
1 parent 95f8f3c commit 2047775
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,7 @@ def __init__(self, *args, **kwargs):
super(StopIntegrationServices, self).__init__(*args, **kwargs)

def run(self):
services = ["tendrl-gluster-integration"]
return service_utils.stop_service(services, self.parameters)
return service_utils.stop_service(
["tendrl-gluster-integration"],
self.parameters
)
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,7 @@ def __init__(self, *args, **kwargs):
super(StopMonitoringServices, self).__init__(*args, **kwargs)

def run(self):
services = ["collectd"]
return service_utils.stop_service(services, self.parameters)
return service_utils.stop_service(
["collectd"],
self.parameters
)

0 comments on commit 2047775

Please sign in to comment.