aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2019-02-08 10:06:37 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2019-02-08 10:06:37 +0200
commita3f30a7119735b8cbfb238ddbcc3faae0009ebbb (patch)
tree214896b92dade223b82d00d54c48fc1312287acf
parent9cc7cb142d2c5fc5d211c133e40c95f899360a47 (diff)
Increase build startup timeout to 2 minutes
-rw-r--r--bbot/agent/agent.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/bbot/agent/agent.cxx b/bbot/agent/agent.cxx
index 83db6d7..5fc3bc9 100644
--- a/bbot/agent/agent.cxx
+++ b/bbot/agent/agent.cxx
@@ -939,12 +939,12 @@ try
};
// The first request should be the task manifest download. Wait for up
- // to 90 seconds for that to arrive. In a sense we use it as an
- // indication that the machine has booted and the worker process has
- // started.
+ // to 2 minutes for that to arrive (again, that long to deal with
+ // flaky Windows networking). In a sense we use it as an indication
+ // that the machine has booted and the worker process has started.
//
size_t to;
- const size_t startup_to (90);
+ const size_t startup_to (120);
const size_t build_to (ops.build_timeout ());
// Wait periodically making sure the machine is still alive.