From 5c1f838dcbe72449f1df512df9057e3b7a3b51f6 Mon Sep 17 00:00:00 2001 From: Jesse Zoldak Date: Thu, 22 Dec 2016 16:20:19 -0500 Subject: [PATCH] Give the bok choy server more time to start up --- pavelib/utils/test/bokchoy_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pavelib/utils/test/bokchoy_utils.py b/pavelib/utils/test/bokchoy_utils.py index a760395550..ea9e7a49d2 100644 --- a/pavelib/utils/test/bokchoy_utils.py +++ b/pavelib/utils/test/bokchoy_utils.py @@ -83,7 +83,7 @@ def wait_for_server(server, port): attempts = 0 server_ok = False - while attempts < 20: + while attempts < 30: try: connection = httplib.HTTPConnection(server, port, timeout=10) connection.request('GET', '/')