Skip to content

Commit

Permalink
Changed Unmanage flow - incorporated review
Browse files Browse the repository at this point in the history
tendrl-bug-id: Tendrl#841
bugzilla: 1583590
Signed-off-by: Anmol Sachan <anmol13694@gmail.com>
  • Loading branch information
anmolsachan committed Jun 6, 2018
1 parent a41e657 commit c4251d0
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 c4251d0

Please sign in to comment.