Skip to content

Commit

Permalink
make single fork default, override in action (#187)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hellblazer authored Feb 11, 2024
1 parent 18d48ab commit d397683
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public RingCommunications(Direction direction, Context<T> context, SigningMember
public <Q> void execute(BiFunction<Comm, Integer, Q> round, SyncHandler<T, Q, Comm> handler) {
final var next = next(member.getId());
if (next == null || next.member == null) {
log.debug("No member for ring: {} on: {}", next.ring, member.getId());
log.debug("No member for ring: {} on: {}", next == null ? "<unkown>" : next.ring, member.getId());
handler.handle(Optional.empty(), next);
return;
}
Expand Down

0 comments on commit d397683

Please sign in to comment.