You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: ensure that multiple instances of a client in the same process dont clobber each other (#2590)
* fix: ensure that multiple instances of a client in the same process dont clobber each other Change-Id: I2087777f1f2d37c62f33c63a7ecb67f7a93712b8 * chore: generate libraries at Wed May 28 14:16:03 UTC 2025 --------- Co-authored-by: cloud-java-bot <cloud-java-bot@google.com>
Copy file name to clipboardExpand all lines: google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/metrics/BigtableCloudMonitoringExporter.java
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,7 @@
66
66
importjava.util.Map;
67
67
importjava.util.Optional;
68
68
importjava.util.concurrent.atomic.AtomicBoolean;
69
+
importjava.util.concurrent.atomic.AtomicLong;
69
70
importjava.util.logging.Level;
70
71
importjava.util.logging.Logger;
71
72
importjava.util.stream.Collectors;
@@ -302,10 +303,14 @@ static class PublicTimeSeriesConverter implements TimeSeriesConverter {
Copy file name to clipboardExpand all lines: google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/metrics/BigtableExporterUtils.java
0 commit comments