From: Matt S Trout Date: Thu, 19 Jul 2012 14:40:54 +0000 (+0000) Subject: await_all shouldn't short circuit on an exception X-Git-Tag: v0.002002~8 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f68888102d5c1cb2736a77f7df6fd7baa92ca4d8;p=scpubgit%2FObject-Remote.git await_all shouldn't short circuit on an exception --- diff --git a/Changes b/Changes index d20d7a1..990c11b 100644 --- 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 diff --git a/lib/Object/Remote/Future.pm b/lib/Object/Remote/Future.pm index 3392f68..609799a 100644 --- a/lib/Object/Remote/Future.pm +++ b/lib/Object/Remote/Future.pm @@ -25,7 +25,7 @@ sub await_future { } sub await_all { - await_future(CPS::Future->needs_all(@_)); + await_future(CPS::Future->wait_all(@_)); map $_->get, @_; }