1
0
Fork 0
mirror of https://github.com/dragonflydb/dragonfly.git synced 2024-12-14 11:58:02 +00:00

chore: add missing await in test_take_over_seeder (#3744)

* add missing await

Signed-off-by: kostas <kostas@dragonflydb.io>
This commit is contained in:
Kostas Kyrimis 2024-09-19 20:03:11 +03:00 committed by GitHub
parent abf3acec4a
commit ed21867fe9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1287,10 +1287,10 @@ async def test_take_over_seeder(
await info_task
@assert_eventually
def assert_master_exists():
async def assert_master_exists():
assert master.proc.poll() == 0, "Master process did not exit correctly."
assert_master_exists()
await assert_master_exists()
master.start()
c_master = master.client()