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

Unified Diff: remoting/host/linux/linux_me2me_host.py

Issue 705483002: Chromoting: Increase timeout waiting for Xvfb to start up. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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: remoting/host/linux/linux_me2me_host.py
diff --git a/remoting/host/linux/linux_me2me_host.py b/remoting/host/linux/linux_me2me_host.py
index d6d17122c29fe405d8733e84b1ee43cc7df7e19b..e24965c8654532805ac13ddef590410f4667c6b2 100755
--- a/remoting/host/linux/linux_me2me_host.py
+++ b/remoting/host/linux/linux_me2me_host.py
@@ -394,7 +394,7 @@ class Desktop:
self.child_env["SSH_AUTH_SOCK"] = self.ssh_auth_sockname
# Wait for X to be active.
- for _test in range(5):
+ for _test in range(20):
proc = subprocess.Popen("xdpyinfo", env=self.child_env, stdout=devnull)
_pid, retcode = os.waitpid(proc.pid, 0)
if retcode == 0:
« 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