Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix passing on of exceptions in Supply.Channel.
  • Loading branch information
jnthn committed Mar 9, 2016
1 parent 6184e15 commit eb02dc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Supply.pm
Expand Up @@ -576,7 +576,7 @@ my class Supply {
self.sanitize.tap:
-> \val { $c.send(val) },
done => { $c.close },
quit => -> $ex { $c.quit($ex) };
quit => -> $ex { $c.fail($ex) };
$c
}

Expand Down

0 comments on commit eb02dc9

Please sign in to comment.