Fix test failure, fixes based on discussion

This commit is contained in:
karuppayya 2016-01-24 21:24:16 +05:30
parent 431cc797c7
commit 6293781225
3 changed files with 2 additions and 1 deletions

View file

@ -91,6 +91,7 @@ public class RemoteInterpreter extends Interpreter {
this.interpreterPath = interpreterPath;
this.env = env;
this.connectTimeout = connectTimeout;
this.maxPoolSize = 10;
this.remoteInterpreterProcessListener = remoteInterpreterProcessListener;
}

View file

@ -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,

View file

@ -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;