Skip to content

Commit

Permalink
Merge pull request #652 from cole-miller/continue-not-return
Browse files Browse the repository at this point in the history
uv_writer: Don't skip later KAIO events when one is EAGAIN
  • Loading branch information
cole-miller authored Jun 20, 2024
2 parents 5f1d77f + 0710242 commit 91267eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/raft/uv_writer.c
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ static void uvWriterPollCb(uv_poll_t *poller, int status, int events)
req->status = RAFT_IOERR;
goto finish;
}
return;
continue;
}

uvWriterReqSetStatus(req, (int)event->res);
Expand Down

0 comments on commit 91267eb

Please sign in to comment.