Skip to content

Commit

Permalink
uv_writer: Don't skip later KAIO events when one is EAGAIN
Browse files Browse the repository at this point in the history
Signed-off-by: Cole Miller <[email protected]>
  • Loading branch information
marco6 authored and cole-miller committed May 3, 2024
1 parent c6ee0fc commit 0710242
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 0710242

Please sign in to comment.