Commit 94c28735 authored by Vladimir Bashkirtsev's avatar Vladimir Bashkirtsev

Increased default time out to 7200 seconds

parent 9dd1914e
......@@ -6,7 +6,7 @@ diff -uNr bazel-5.3.2/src/main/java/com/google/devtools/build/lib/bazel/reposito
doc =
"Executes the command given by the list of arguments. The execution time of the command"
- + " is limited by <code>timeout</code> (in seconds, default 600 seconds). This method"
+ + " is limited by <code>timeout</code> (in seconds, default 3600 seconds). This method"
+ + " is limited by <code>timeout</code> (in seconds, default 7200 seconds). This method"
+ " returns an <code>exec_result</code> structure containing the output of the"
+ " command. The <code>environment</code> map can be used to override some"
+ " environment variables to be passed to the process.",
......@@ -16,8 +16,8 @@ diff -uNr bazel-5.3.2/src/main/java/com/google/devtools/build/lib/bazel/reposito
named = true,
- defaultValue = "600",
- doc = "maximum duration of the command in seconds (default is 600 seconds)."),
+ defaultValue = "3600",
+ doc = "maximum duration of the command in seconds (default is 3600 seconds)."),
+ defaultValue = "7200",
+ doc = "maximum duration of the command in seconds (default is 7200 seconds)."),
@Param(
name = "environment",
defaultValue = "{}",
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment