File tree Expand file tree Collapse file tree 2 files changed +12
-9
lines changed
src/main/protocol-impl/java/com/mysql/cj/protocol/x Expand file tree Collapse file tree 2 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 3
3
4
4
Version 8.0.12
5
5
6
+ - Fix for Bug#28208000, MASTER : HANG IN ASYNCHRONOUS SELECT TEST.
7
+
6
8
- WL#10544, Update MySQL 8.0 keywords list.
7
9
8
10
- WL#11858, DevAPI: Core API v1 alignment.
Original file line number Diff line number Diff line change @@ -210,15 +210,16 @@ public void run() {
210
210
break ;
211
211
}
212
212
}
213
- }
214
- try {
215
- XMessage msg = null ;
216
- do {
217
- XMessageHeader hdr = readHeader ();
218
- msg = readMessage (null , hdr );
219
- } while (!l .createFromMessage (msg ));
220
- } catch (Throwable t ) {
221
- l .error (t );
213
+ } else {
214
+ try {
215
+ XMessage msg = null ;
216
+ do {
217
+ XMessageHeader hdr = readHeader ();
218
+ msg = readMessage (null , hdr );
219
+ } while (!l .createFromMessage (msg ));
220
+ } catch (Throwable t ) {
221
+ l .error (t );
222
+ }
222
223
}
223
224
}
224
225
} catch (InterruptedException e ) {
You can’t perform that action at this time.
0 commit comments