Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JNSimba committed Mar 5, 2024
1 parent 431693b commit 73389c7
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,11 @@ private static boolean isBeReady(ResultSet rs, Duration duration) throws SQLExce
}

protected static void printClusterStatus() throws Exception {
LOG.info("{} {} Current machine IP: {}", Thread.currentThread().getId(), Thread.currentThread().getName(), InetAddress.getLocalHost());
LOG.info(
"{} {} Current machine IP: {}",
Thread.currentThread().getId(),
Thread.currentThread().getName(),
InetAddress.getLocalHost());
try (Statement statement = connection.createStatement()) {
ResultSet showFrontends = statement.executeQuery("show frontends");
LOG.info("Frontends status: {}", convertList(showFrontends));
Expand Down

0 comments on commit 73389c7

Please sign in to comment.