Skip to content

Commit

Permalink
Update completeExceptionally on ClusterCommand using super (#2980)
Browse files Browse the repository at this point in the history
  • Loading branch information
thachlp authored Sep 9, 2024
1 parent d3c8149 commit c266570
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/io/lettuce/core/cluster/ClusterCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,8 @@ public void encode(ByteBuf buf) {

@Override
public boolean completeExceptionally(Throwable ex) {
boolean result = command.completeExceptionally(ex);
completed = true;
return result;
return super.completeExceptionally(ex);
}

@Override
Expand Down

0 comments on commit c266570

Please sign in to comment.