pull/2903/head
dkbmtb 5 months ago committed by GitHub
parent e1264657d3
commit ee6fca1349
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -222,8 +222,8 @@ public class JobControllerImpl implements JobController {
stdoutHandlerChain.add(new RedirectHandler()); stdoutHandlerChain.add(new RedirectHandler());
} }
} }
ProcessOutput ProcessOutput = new ProcessOutput(stdoutHandlerChain, cacheLocation, term); ProcessOutput processOutput = new ProcessOutput(stdoutHandlerChain, cacheLocation, term);
ProcessImpl process = new ProcessImpl(command, remaining, command.processHandler(), ProcessOutput, resultDistributor); ProcessImpl process = new ProcessImpl(command, remaining, command.processHandler(), processOutput, resultDistributor);
process.setTty(term); process.setTty(term);
return process; return process;
} }

Loading…
Cancel
Save