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 8b3e467 commit a782969Copy full SHA for a782969
google-cloud-spanner/src/test/java/com/google/cloud/spanner/RetryOnInvalidatedSessionTest.java
@@ -228,8 +228,10 @@ public void setUp() throws InterruptedException {
228
mockSpanner.reset();
229
System.out.println("Recreating spanner instance");
230
if (spanner != null) {
231
- System.out.printf("Closing the spanner instance %s %s",
232
- spanner.getOptions().getSessionPoolOptions().isFailIfSessionNotFound(), failOnInvalidatedSession);
+ System.out.printf(
+ "Closing the spanner instance %s %s",
233
+ spanner.getOptions().getSessionPoolOptions().isFailIfSessionNotFound(),
234
+ failOnInvalidatedSession);
235
spanner.close();
236
}
237
SessionPoolOptions.Builder builder = SessionPoolOptions.newBuilder().setFailOnSessionLeak();
0 commit comments