Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
improved resilience of Mojo::IOLoop exception handling
  • Loading branch information
kraih committed Sep 12, 2012
1 parent a20947f commit 1494ca2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Changes
@@ -1,5 +1,6 @@

3.41 2012-09-12
3.41 2012-09-13
- Improved resilience of Mojo::IOLoop exception handling.
- Improved tests.
- Fixed small CGI bug.

Expand Down
2 changes: 1 addition & 1 deletion lib/Mojo/IOLoop.pm
Expand Up @@ -62,8 +62,8 @@ sub client {
);
$client->on(
error => sub {
$self->_remove($id);
$self->$cb(pop, undef);
delete $self->{connections}{$id};
}
);
$client->connect(@_);
Expand Down

0 comments on commit 1494ca2

Please sign in to comment.