Skip to content

Commit d63973e

Browse files
committed
fix ci failure
1 parent 80f0ba0 commit d63973e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

google/cloud/storage/internal/tracing_connection.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ void TracingConnection::EnrichSpan(opentelemetry::trace::Span& span,
109109
}
110110

111111
void TracingConnection::EnrichSpan(opentelemetry::trace::Span& span,
112-
storage::BucketMetadata const& metadata) {
112+
storage::BucketMetadata const& metadata) const {
113113
auto const enabled =
114114
options().get<storage_experimental::OTelSpanEnrichmentOption>();
115115
if (!enabled) return;

google/cloud/storage/internal/tracing_connection.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ class TracingConnection : public storage::internal::StorageConnection {
186186
void EnrichSpan(opentelemetry::trace::Span& span,
187187
std::string const& bucket_name);
188188
void EnrichSpan(opentelemetry::trace::Span& span,
189-
storage::BucketMetadata const& metadata);
189+
storage::BucketMetadata const& metadata) const;
190190
static void EnrichSpan(opentelemetry::trace::Span& span,
191191
BucketCacheEntry const& entry);
192192
void MaybeTriggerBackgroundFetch(std::string const& bucket_name);

0 commit comments

Comments
 (0)