mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Fix test failure, fixes based on discussion
This commit is contained in:
parent
431cc797c7
commit
6293781225
3 changed files with 2 additions and 1 deletions
|
|
@ -91,6 +91,7 @@ public class RemoteInterpreter extends Interpreter {
|
|||
this.interpreterPath = interpreterPath;
|
||||
this.env = env;
|
||||
this.connectTimeout = connectTimeout;
|
||||
this.maxPoolSize = 10;
|
||||
this.remoteInterpreterProcessListener = remoteInterpreterProcessListener;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -263,6 +263,7 @@ public class RemoteInterpreterServer
|
|||
private Interpreter interpreter;
|
||||
private String script;
|
||||
private InterpreterContext context;
|
||||
private Map<String, Object> infos;
|
||||
|
||||
public InterpretJob(
|
||||
String jobId,
|
||||
|
|
|
|||
|
|
@ -86,7 +86,6 @@ public abstract class Job {
|
|||
private transient Throwable exception;
|
||||
private transient JobListener listener;
|
||||
private long progressUpdateIntervalMs;
|
||||
protected Map<String, Object> infos;
|
||||
|
||||
public Job(String jobName, JobListener listener, long progressUpdateIntervalMs) {
|
||||
this.jobName = jobName;
|
||||
|
|
|
|||
Loading…
Reference in a new issue