Skip to content

Commit 31cc9b7

Browse files
committed
Fix failed checks
Signed-off-by: haanhvu <[email protected]>
1 parent 0151848 commit 31cc9b7

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

cmd/jaeger/internal/exporters/storageexporter/factory.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func createTracesExporter(ctx context.Context, set exporter.CreateSettings, conf
4141
exporterhelper.WithCapabilities(consumer.Capabilities{MutatesData: false}),
4242
exporterhelper.WithTimeout(exporterhelper.TimeoutSettings{Timeout: 0}),
4343
exporterhelper.WithRetry(exporterhelper.RetrySettings{Enabled: false}),
44-
//Enable queue settings for batch inserts
44+
// Enable queue settings for batch inserts
4545
exporterhelper.WithQueue(exporterhelper.QueueSettings{Enabled: true}),
4646
exporterhelper.WithStart(ex.start),
4747
exporterhelper.WithShutdown(ex.close),

plugin/storage/clickhouse/config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ type Config struct {
1919
Password string `mapstructure:"password"`
2020
Database string `mapstructure:"database"`
2121
SpansTableName string `mapstructure:"spans_table_name"`
22-
//materialized views' names?
22+
// Materialized views' names?
2323
}
2424

2525
const (
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// Copyright (c) 2023 The Jaeger Authors.
2+
// SPDX-License-Identifier: Apache-2.0
3+
4+
package spanstore

0 commit comments

Comments
 (0)