Skip to content
This repository was archived by the owner on Apr 7, 2026. It is now read-only.

Commit 70dbc58

Browse files
fix: increase awaitTermination timeout in ITBulkConnectionTest
1 parent 0bf87a3 commit 70dbc58

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

google-cloud-spanner/src/test/java/com/google/cloud/spanner/connection/it/ITBulkConnectionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public void testBulkCreateConnectionsMultiThreaded() throws InterruptedException
8080
});
8181
}
8282
executor.shutdown();
83-
executor.awaitTermination(10L, TimeUnit.SECONDS);
83+
assertThat(executor.awaitTermination(60L, TimeUnit.SECONDS), is(true));
8484
// close Spanner instances explicitly. This method will throw an exception if there are any
8585
// connections still open in the pool
8686
closeSpanner();

0 commit comments

Comments
 (0)