Skip to content

Commit 53ea0c9

Browse files
committed
Fix gofmt formatting in config.go and aggregator.go
Co-authored-by: samikshya-chand_data
1 parent ac2d0ac commit 53ea0c9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

internal/config/config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ type UserConfig struct {
101101
// Telemetry configuration
102102
// Uses config overlay pattern: client > server > default.
103103
// Unset = check server feature flag; explicitly true/false overrides the server.
104-
EnableTelemetry ConfigValue[bool]
105-
Transport http.RoundTripper
104+
EnableTelemetry ConfigValue[bool]
105+
Transport http.RoundTripper
106106
UseLz4Compression bool
107107
EnableMetricViewMetadata bool
108108
CloudFetchConfig

telemetry/aggregator.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ type metricsAggregator struct {
2424
closeOnce sync.Once
2525
ctx context.Context // Cancellable context for in-flight exports
2626
cancel context.CancelFunc // Cancels ctx on close
27-
exportSem chan struct{} // Bounds concurrent export goroutines
27+
exportSem chan struct{} // Bounds concurrent export goroutines
2828
}
2929

3030
// statementMetrics holds aggregated metrics for a statement.

0 commit comments

Comments
 (0)