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

Commit 06760db

Browse files
authored
Merge branch 'main' into eef
2 parents d8fcc4a + 2fd403f commit 06760db

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/unmanaged_dependency_check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
# repository
1818
.kokoro/build.sh
1919
- name: Unmanaged dependency check
20-
uses: googleapis/sdk-platform-java/java-shared-dependencies/unmanaged-dependency-check@google-cloud-shared-dependencies/v3.56.0
20+
uses: googleapis/sdk-platform-java/java-shared-dependencies/unmanaged-dependency-check@google-cloud-shared-dependencies/v3.56.1
2121
with:
2222
bom-path: google-cloud-spanner-bom/pom.xml

google-cloud-spanner-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>com.google.cloud</groupId>
1010
<artifactId>sdk-platform-java-config</artifactId>
11-
<version>3.56.0</version>
11+
<version>3.56.1</version>
1212
</parent>
1313

1414
<name>Google Cloud Spanner BOM</name>

google-cloud-spanner/src/main/java/com/google/cloud/spanner/MultiplexedSessionDatabaseClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ final class MultiplexedSessionMaintainer {
562562
this.clock = clock;
563563
}
564564

565-
void start() {
565+
private synchronized void start() {
566566
// Schedule the maintainer to run once every ten minutes (by default).
567567
long loopFrequencyMillis =
568568
MultiplexedSessionDatabaseClient.this
@@ -577,7 +577,7 @@ void start() {
577577
this::maintain, loopFrequencyMillis, loopFrequencyMillis, TimeUnit.MILLISECONDS);
578578
}
579579

580-
void stop() {
580+
private synchronized void stop() {
581581
if (this.scheduledFuture != null) {
582582
this.scheduledFuture.cancel(false);
583583
}

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>com.google.cloud</groupId>
1616
<artifactId>sdk-platform-java-config</artifactId>
17-
<version>3.56.0</version>
17+
<version>3.56.1</version>
1818
</parent>
1919

2020
<developers>

0 commit comments

Comments
 (0)