Skip to content

Commit f2a963b

Browse files
authored
Merge pull request #2714 from opentensor/feat/roman/wait_for_node_start-to-20-mins
improve `wait_for_node_start` until 20 mins
2 parents ed700b2 + 5dc537f commit f2a963b

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)