Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
Signed-off-by: Cole Miller <[email protected]>
  • Loading branch information
cole-miller committed Aug 15, 2024
1 parent 9521c1a commit 7b774bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/raft/lib/uv.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@
do { \
int rv_; \
rv_ = raft_uv_init(&f->io, &f->loop, f->dir, &f->transport); \
if (rv_ != 0) { munit_errorf("raft_uv_init %d", rv_); } \
if (rv_ != 0) { munit_errorf("%s", f->io.errmsg); } \
raft_uv_set_auto_recovery(&f->io, false); \
rv_ = f->io.init(&f->io, 1, "127.0.0.1:9001"); \
if (rv_ != 0) { munit_errorf("uvInit %d", rv_); } \
if (rv_ != 0) { munit_errorf("%s", f->io.errmsg); } \
} while (0)

MUNIT_UNUSED static void uvCloseCb(struct raft_io *io)
Expand Down

0 comments on commit 7b774bf

Please sign in to comment.