File tree Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Expand file tree Collapse file tree 2 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -311,7 +311,6 @@ case class ProcGroup private[os] (commands: Seq[proc]) {
311311 runnable.run()
312312 } catch {
313313 case e : IOException =>
314- println(s " Broken pipe in process $index" )
315314 queue.put(index)
316315 }
317316 }
Original file line number Diff line number Diff line change @@ -241,13 +241,11 @@ class ProcessPipeline(
241241 var pipelineRunning = true
242242 while (pipelineRunning) {
243243 val brokenPipeIndex = queue.take()
244- println(" Killing " + brokenPipeIndex)
245244 if (brokenPipeIndex == processes.length) { // Special case signaling finished pipeline
246245 pipelineRunning = false
247246 } else {
248247 processes(brokenPipeIndex).destroyForcibly()
249248 }
250- println(" Processes status: " + processes.map(_.isAlive()))
251249 }
252250 new Thread (
253251 new Runnable {
You can’t perform that action at this time.
0 commit comments