-
Bug
-
Resolution: Done
-
Minor
-
0.9.0.Alpha1
-
None
The MySQLConnectorTask currently always reports that it has found the required binlog from MySQL. If the binlog is not found it prints an additional log message.
boolean found = logNames.stream().anyMatch(binlogFilename::equals); if (!found) { logger.info("Connector requires binlog file '{}', but MySQL only has {}", binlogFilename, String.join(", ", logNames)); } logger.info("MySQL has the binlog file '{}' required by the connector", binlogFilename);
I believe an else block just needs to be added.