Skip to content

Commit

Permalink
fixup: use minumal ConnectionEvent constructor
Browse files Browse the repository at this point in the history
Signed-off-by: Todd Baert <[email protected]>
  • Loading branch information
toddbaert committed Sep 25, 2024
1 parent 3186010 commit b2931d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public void shutdown() throws Exception {
this.channel.awaitTermination(this.deadline, TimeUnit.MILLISECONDS);
log.warn(String.format("Unable to shut down channel by %d deadline", this.deadline));
}
this.onConnectionEvent.accept(new ConnectionEvent(false, Collections.emptyList(), Collections.emptyMap()));
this.onConnectionEvent.accept(new ConnectionEvent(false));
}
}

Expand Down

0 comments on commit b2931d6

Please sign in to comment.