Skip to content

Commit

Permalink
fix incorrect fall through from previous branch of the switch statement
Browse files Browse the repository at this point in the history
Signed-off-by: Ludovic Orban <[email protected]>
  • Loading branch information
lorban committed Feb 14, 2025
1 parent 9c20685 commit 4a87adc
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -572,6 +572,8 @@ public Callback cancelWrite(Throwable cause)
case IDLE:
if (updateState(current, new FailedState(cause)))
return null;
break;

case FAILED:
return null;

Expand Down

0 comments on commit 4a87adc

Please sign in to comment.