We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 823dd86 commit eb005e7Copy full SHA for eb005e7
r2dbc-mysql/src/main/java/io/asyncer/r2dbc/mysql/client/ReactorNettyClient.java
@@ -381,7 +381,7 @@ public void error(Throwable e) {
381
public void next(ServerMessage message) {
382
if (DEBUG_ENABLED) {
383
if (message instanceof WarningMessage) {
384
- int warnings = ((WarningMessage) message).getWarnings();
+ final int warnings = ((WarningMessage) message).getWarnings();
385
if (warnings == 0) {
386
logger.debug("Response: {}", message);
387
} else {
0 commit comments