Remove wait_for_success for start/stop service methods

Signed-off-by: Vladislav Karakozov <v.karakozov@yadro.com>
This commit is contained in:
Vladislav Karakozov 2023-02-06 19:05:03 +03:00 committed by Vlad K
parent fc6f9ac162
commit 850c0e77ec
3 changed files with 2 additions and 4 deletions

View file

@ -46,11 +46,9 @@ class NodeBase:
def label(self) -> str:
return self.name
@wait_for_success(60, 1)
def start_service(self):
self.host.start_service(self.name)
@wait_for_success(60, 1)
def stop_service(self):
self.host.stop_service(self.name)