src/Pure/Tools/build_cluster.scala
changeset 78643 d5a1d64a563d
parent 78639 ca56952b7322
parent 78592 fdfe9b91d96e
child 78674 88f47c70187a
equal deleted inserted replaced
78642:4f2215cfc3e0 78643:d5a1d64a563d
   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