Commit 7cb0f7c2 authored by Simon Rettberg's avatar Simon Rettberg
Browse files

[SystemCommandTask] Return 124 as exit code on timeout

2 merge requests!3Develop,!2Merge with germany
Showing with 1 addition and 1 deletion
+1 -1
......@@ -96,7 +96,7 @@ public abstract class SystemCommandTask extends AbstractTask
stderr.start();
// Wait for everything
int retval = -1;
int retval = 124; // Default to 124, which is what the timeout util does
if ( this.timeoutSeconds <= 0 ) {
retval = process.waitFor();
} else {
......
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