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:
parent
abf3acec4a
commit
ed21867fe9
1 changed files with 2 additions and 2 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue