projects
/
scpubgit/Object-Remote.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
9c01f26
)
await_all shouldn't short circuit on an exception
Matt S Trout [Thu, 19 Jul 2012 14:40:54 +0000 (14:40 +0000)]
Changes
patch
|
blob
|
blame
|
history
lib/Object/Remote/Future.pm
patch
|
blob
|
blame
|
history
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
diff --git
a/lib/Object/Remote/Future.pm
b/lib/Object/Remote/Future.pm
index
3392f68
..
609799a
100644
(file)
--- 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, @_;
}