Commit acf8f57f authored by Vladimir Bashkirtsev's avatar Vladimir Bashkirtsev

Increased default time out to 86400 seconds

parent 976bf4dc
...@@ -6,7 +6,7 @@ diff -uNr bazel-5.3.2/src/main/java/com/google/devtools/build/lib/bazel/reposito ...@@ -6,7 +6,7 @@ diff -uNr bazel-5.3.2/src/main/java/com/google/devtools/build/lib/bazel/reposito
doc = doc =
"Executes the command given by the list of arguments. The execution time of the command" "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 600 seconds). This method"
+ + " is limited by <code>timeout</code> (in seconds, default 28800 seconds). This method" + + " is limited by <code>timeout</code> (in seconds, default 86400 seconds). This method"
+ " returns an <code>exec_result</code> structure containing the output of the" + " returns an <code>exec_result</code> structure containing the output of the"
+ " command. The <code>environment</code> map can be used to override some" + " command. The <code>environment</code> map can be used to override some"
+ " environment variables to be passed to the process.", + " 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 ...@@ -16,8 +16,8 @@ diff -uNr bazel-5.3.2/src/main/java/com/google/devtools/build/lib/bazel/reposito
named = true, named = true,
- defaultValue = "600", - defaultValue = "600",
- doc = "maximum duration of the command in seconds (default is 600 seconds)."), - doc = "maximum duration of the command in seconds (default is 600 seconds)."),
+ defaultValue = "28800", + defaultValue = "86400",
+ doc = "maximum duration of the command in seconds (default is 28800 seconds)."), + doc = "maximum duration of the command in seconds (default is 86400 seconds)."),
@Param( @Param(
name = "environment", name = "environment",
defaultValue = "{}", 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