Skip to content

Commit cc68a07

Browse files
author
Takashi Matsuo
committed
wait longer for the server to spin up
1 parent b0f666a commit cc68a07

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

appengine/flexible/websockets/main_test.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,11 @@ def server():
4242
stderr=subprocess.PIPE
4343
)
4444

45+
# With btlr, there can be many processes are spawned and the
46+
# server might be in a tight memory situation, so let's wait for 2
47+
# mins.
4548
# Wait until the server responds before proceeding.
46-
@retry(wait_fixed=50, stop_max_delay=5000)
49+
@retry(wait_fixed=50, stop_max_delay=120000)
4750
def check_server(url):
4851
requests.get(url)
4952

0 commit comments

Comments
 (0)