File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
src/main/java/com/actiontech/dble/backend/mysql/nio/handler Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ public abstract class MultiNodeHandler implements ResponseHandler {
2626 private static final Logger LOGGER = LoggerFactory .getLogger (MultiNodeHandler .class );
2727 protected final ReentrantLock lock = new ReentrantLock ();
2828 protected final NonBlockingSession session ;
29- private AtomicBoolean isFailed = new AtomicBoolean (false );
29+ protected AtomicBoolean isFailed = new AtomicBoolean (false );
3030 protected volatile String error ;
3131 protected byte packetId ;
3232 protected final AtomicBoolean errorResponse = new AtomicBoolean (false );
Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ public void reset() {
6767 firstResponsed = false ;
6868 unResponseRrns .clear ();
6969 packetId = 0 ;
70+ isFailed .set (false );
7071 }
7172
7273 public void debugCommitDelay () {
You can’t perform that action at this time.
0 commit comments