Fix command timeout period

This commit is contained in:
karuppayya 2016-01-11 13:46:05 +05:30
parent 87364b178d
commit 9eb3ecaf6b

View file

@ -46,7 +46,7 @@ import org.slf4j.LoggerFactory;
public class ShellInterpreter extends Interpreter {
Logger logger = LoggerFactory.getLogger(ShellInterpreter.class);
private static final String EXECUTOR_KEY = "executor";
int commandTimeOut = 60000;
int commandTimeOut = 600000;
static {
Interpreter.register("sh", ShellInterpreter.class.getName());