Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11189)

Unified Diff: chrome/test/functional/webpagereplay.py

Issue 17155016: Increase web page replay startup timeout from 10 to 30 seconds. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/functional/webpagereplay.py
diff --git a/chrome/test/functional/webpagereplay.py b/chrome/test/functional/webpagereplay.py
index 6e6685852de3eda29cfbbbcac4c743c72403703a..a35f5571d9a1b129e1905def5895ba7a509311d1 100755
--- a/chrome/test/functional/webpagereplay.py
+++ b/chrome/test/functional/webpagereplay.py
@@ -127,7 +127,7 @@ class ReplayServer(object):
def IsStarted(self):
"""Checks to see if the server is up and running."""
- for _ in range(10):
+ for _ in range(30):
if self.replay_process.poll() is not None:
# The process has exited.
break
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698