equal
deleted
inserted
replaced
261 if (attempts.forall(Exn.the_res.isDefinedAt)) { |
261 if (attempts.forall(Exn.the_res.isDefinedAt)) { |
262 _sessions = attempts.map(Exn.the_res) |
262 _sessions = attempts.map(Exn.the_res) |
263 _sessions |
263 _sessions |
264 } |
264 } |
265 else { |
265 else { |
266 for (Exn.Res(session) <- attempts) session.close() |
266 for (case Exn.Res(session) <- attempts) session.close() |
267 error("Failed to connect build cluster") |
267 error("Failed to connect build cluster") |
268 } |
268 } |
269 } |
269 } |
270 |
270 |
271 |
271 |