await_all shouldn't short circuit on an exception
Matt S Trout [Thu, 19 Jul 2012 14:40:54 +0000 (14:40 +0000)]
Changes
lib/Object/Remote/Future.pm

diff --git a/Changes b/Changes
index d20d7a1..990c11b 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,4 @@
+0.002001 - 2012-07-18
   - start::, maybe::start:: and next::
   - automatic prompting for sudo passwords
   - allow transfer of glob references
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, @_;
 }