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 {
26
26
private static final Logger LOGGER = LoggerFactory .getLogger (MultiNodeHandler .class );
27
27
protected final ReentrantLock lock = new ReentrantLock ();
28
28
protected final NonBlockingSession session ;
29
- private AtomicBoolean isFailed = new AtomicBoolean (false );
29
+ protected AtomicBoolean isFailed = new AtomicBoolean (false );
30
30
protected volatile String error ;
31
31
protected byte packetId ;
32
32
protected final AtomicBoolean errorResponse = new AtomicBoolean (false );
Original file line number Diff line number Diff line change @@ -67,6 +67,7 @@ public void reset() {
67
67
firstResponsed = false ;
68
68
unResponseRrns .clear ();
69
69
packetId = 0 ;
70
+ isFailed .set (false );
70
71
}
71
72
72
73
public void debugCommitDelay () {
You can’t perform that action at this time.
0 commit comments