Skip to content

Commit

Permalink
Increase RBE timeout
Browse files Browse the repository at this point in the history
We've seen a higher number of RBE upload failures recently (e.g. https://buildkite.com/bazel/bazel-bazel-macos-ninja/builds/106#018cf836-9663-44b4-b870-7123e518f9ef).

With this change we're increasing the timeout from 60 to 3600, which is the recommended default value (which we've already been using for rbe_* platform tasks).
  • Loading branch information
fweikert authored Jan 12, 2024
1 parent 831f3ce commit d7c559f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildkite/bazelci.py
Original file line number Diff line number Diff line change
Expand Up @@ -1888,7 +1888,7 @@ def remote_caching_flags(platform, accept_cached=True):
platform_cache_digest.update(key)
platform_cache_digest.update(b":")

remote_timeout = 600 if is_ipv6_mac() else 60
remote_timeout = 3600 if is_ipv6_mac() else 60
flags += [
f"--remote_timeout={remote_timeout}",
"--remote_max_connections=200",
Expand Down

0 comments on commit d7c559f

Please sign in to comment.