Skip to content

Commit 000edf8

Browse files
Change time_to_sleep in tests
1 parent c8adf95 commit 000edf8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/integration/test_ytsaurus/yt_helpers.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def __init__(self, cluster, instance, proxy, port):
88
self.proxy = proxy
99
self.port = port
1010

11-
def exec(self, command, retry_count=5, time_to_sleep=10):
11+
def exec(self, command, retry_count=100, time_to_sleep=0.5):
1212

1313
for retry in range(retry_count):
1414
try:
@@ -38,8 +38,8 @@ def create_table(
3838
dynamic=False,
3939
schema=None,
4040
sorted_columns=set(),
41-
retry_count=5,
42-
time_to_sleep=10,
41+
retry_count=100,
42+
time_to_sleep=0.5,
4343
):
4444

4545
schema_arribute = ""

0 commit comments

Comments
 (0)