Skip to content

Commit f6876b5

Browse files
committed
fixes
1 parent 81a1374 commit f6876b5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ydb/tests/functional/compatibility/test_compatibility.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,8 @@ def _execute_command_and_get_result(self, command):
9797
def change_cluster_version(self, new_binary_paths):
9898
self.config.set_binary_paths(new_binary_paths)
9999
self.cluster.update_configurator_and_restart(self.config)
100+
# TODO: replace with `self.driver.wait()`
101+
time.sleep(60)
100102

101103
def execute_scan_query(self, query_body):
102104
query = ydb.ScanQuery(query_body, {})
@@ -156,7 +158,7 @@ def create_table(self, store_type):
156158
AUTO_PARTITIONING_BY_SIZE = ENABLED,
157159
AUTO_PARTITIONING_PARTITION_SIZE_MB = 1);""".format(store_type=store_type.upper())
158160
)
159-
161+
160162
create_table(self, store_type)
161163
upsert_and_check_sum(self)
162164
self.change_cluster_version(self.all_binary_paths[1])

0 commit comments

Comments
 (0)