await_all shouldn't short circuit on an exception
[scpubgit/Object-Remote.git] / lib / Object / Remote / Future.pm
index 3392f68..609799a 100644 (file)
@@ -25,7 +25,7 @@ sub await_future {
 }
 
 sub await_all {
-  await_future(CPS::Future->needs_all(@_));
+  await_future(CPS::Future->wait_all(@_));
   map $_->get, @_;
 }