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 0bbba78 commit 891d596Copy full SHA for 891d596
google-cloud-spanner-executor/src/main/java/com/google/cloud/executor/spanner/CloudClientExecutor.java
@@ -907,9 +907,7 @@ public Future<Boolean> getEndToEndTraceVerificationTask(String traceId) {
907
Thread.sleep(sleepDuration);
908
} catch (InterruptedException e) {
909
Thread.currentThread().interrupt(); // Handle interruption
910
- LOGGER.log(
911
- Level.INFO,
912
- String.format("Thread interrupted."));
+ LOGGER.log(Level.INFO, String.format("Thread interrupted."));
913
return false; // Return false if interrupted
914
}
915
return isExportedEndToEndTraceValid(traceId);
0 commit comments