[#116] Updates for local scenario teardown

Signed-off-by: Andrey Berezin <a.berezin@yadro.com>
This commit is contained in:
Andrey Berezin 2023-11-13 13:34:49 +03:00
parent 72bd467c53
commit 6519cfafc9
2 changed files with 21 additions and 50 deletions

View file

@ -173,7 +173,8 @@ class ClusterStateController:
@reporter.step_deco("Wait for S3Gates reconnection to local storage")
def wait_s3gates(self):
online_s3gates = self._get_online(S3Gate)
parallel(self.wait_s3gate, online_s3gates)
if online_s3gates:
parallel(self.wait_s3gate, online_s3gates)
@wait_for_success(600, 60)
def wait_tree_healthcheck(self):