Skip to content

Commit 5c6e58c

Browse files
committed
Remove uv_poll error short-circuit
Fixes brianc#350
1 parent 95507da commit 5c6e58c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/binding.cc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,7 @@ class Connection : public ObjectWrap {
8787
TRACE("Received IO event");
8888

8989
if(status == -1) {
90-
LOG("Connection error.");
91-
return;
90+
TRACE("Connection error. -1 status from lib_uv_poll");
9291
}
9392

9493
Connection *connection = static_cast<Connection*>(w->data);

0 commit comments

Comments
 (0)