mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Fix style
This commit is contained in:
parent
45af2dfa93
commit
8287eb9543
1 changed files with 1 additions and 1 deletions
|
|
@ -472,7 +472,7 @@ public class InterpreterFactory {
|
|||
// in ZEPPELIN_INTERPRETER_CONNECT_TIMEOUT msec. However, if termination of the process and
|
||||
// removal from interpreter group take too long, throw an error.
|
||||
long interpreterRemovalWaitTimeout =
|
||||
Math.max(10*1000, conf.getInt(ConfVars.ZEPPELIN_INTERPRETER_CONNECT_TIMEOUT) * 2);
|
||||
Math.max(10 * 1000, conf.getInt(ConfVars.ZEPPELIN_INTERPRETER_CONNECT_TIMEOUT) * 2);
|
||||
while (interpreterGroup.containsKey(noteId)) {
|
||||
if (System.currentTimeMillis() - interpreterRemovalWaitStart >
|
||||
interpreterRemovalWaitTimeout) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue