Upgrade Tests: Restore progress checks after every step

This commit is contained in:
Vaidas Gasiunas 2022-05-13 11:08:23 +02:00
parent b55863d958
commit 6bb83adbdc
1 changed files with 2 additions and 2 deletions

View File

@ -468,8 +468,8 @@ class UpgradeTest:
else: else:
assert entry in self.used_versions, "Unexpected entry in the upgrade path: {}".format(entry) assert entry in self.used_versions, "Unexpected entry in the upgrade path: {}".format(entry)
self.upgrade_to(entry) self.upgrade_to(entry)
self.health_check() self.health_check()
self.progress_check() self.progress_check()
os.write(self.ctrl_pipe, b"STOP\n") os.write(self.ctrl_pipe, b"STOP\n")
finally: finally:
os.close(self.ctrl_pipe) os.close(self.ctrl_pipe)