Skip to content
Snippets Groups Projects
Commit fc3294cd authored by Georgy Moshkin's avatar Georgy Moshkin :speech_balloon:
Browse files

test: reduce test_ddl_create_table_unfinished_from_snapshot flakiness

parent 2b9b9474
No related branches found
No related tags found
1 merge request!1259Gmoshkin/fix expel
......@@ -358,10 +358,13 @@ def test_ddl_create_table_unfinished_from_snapshot(cluster: Cluster):
i3.start()
i3.wait_online()
def check(instance):
assert instance.call("box.space._space:get", space_id) is not None
assert instance.eval("return box.space._pico_table:get(...).operable", space_id)
# The schema change finalized.
for i in cluster.instances:
assert i.call("box.space._space:get", space_id) is not None
assert i.eval("return box.space._pico_table:get(...).operable", space_id)
Retriable(timeout=10).call(check, i)
################################################################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment