Skip to content

Commit 2a6f62a

Browse files
author
Roman
committed
improve wait_for_node_start until 20 mins
1 parent 5804210 commit 2a6f62a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/e2e_tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def wait_for_node_start(process, pattern):
4848

4949
print(line.strip())
5050
# 10 min as timeout
51-
if int(time.time()) - timestamp > 10 * 60:
51+
if int(time.time()) - timestamp > 20 * 60:
5252
print("Subtensor not started in time")
5353
raise TimeoutError
5454
if pattern.search(line):

0 commit comments

Comments
 (0)