mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Fix command timeout period
This commit is contained in:
parent
87364b178d
commit
9eb3ecaf6b
1 changed files with 1 additions and 1 deletions
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Reference in a new issue