We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This code is passing an argument to String.format that is ignored, because the string doesn't have any format specifiers:
String.format
java-spanner/google-cloud-spanner/src/main/java/com/google/cloud/spanner/SessionPool.java
Lines 3664 to 3669 in 6f522dd
The intent may have been:
logger.log( Level.WARNING, "Failed to create multiplexed session. " + "Pending replacing stale multiplexed session", t);
This bug was caught by https://errorprone.info/bugpattern/FormatString
The text was updated successfully, but these errors were encountered:
rahul2393
Successfully merging a pull request may close this issue.
This code is passing an argument to
String.format
that is ignored, because the string doesn't have any format specifiers:java-spanner/google-cloud-spanner/src/main/java/com/google/cloud/spanner/SessionPool.java
Lines 3664 to 3669 in 6f522dd
The intent may have been:
This bug was caught by https://errorprone.info/bugpattern/FormatString
The text was updated successfully, but these errors were encountered: