From 76c2e910cb53eb0962402e02afdfd7369b1eadbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Scheibe?= Date: Mon, 20 Mar 2023 11:05:38 +0100 Subject: [PATCH] chore: Fix spelling of "syncing" (#8829) This makes it consistent in the repository. --- pkg/storage/stores/series/index/table_manager.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/storage/stores/series/index/table_manager.go b/pkg/storage/stores/series/index/table_manager.go index 4db98b851f..095a4b7f9a 100644 --- a/pkg/storage/stores/series/index/table_manager.go +++ b/pkg/storage/stores/series/index/table_manager.go @@ -43,7 +43,7 @@ func newTableManagerMetrics(r prometheus.Registerer) *tableManagerMetrics { m.syncTableDuration = promauto.With(r).NewHistogramVec(prometheus.HistogramOpts{ Namespace: "loki", Name: "table_manager_sync_duration_seconds", - Help: "Time spent synching tables.", + Help: "Time spent syncing tables.", Buckets: prometheus.DefBuckets, }, []string{"operation", "status_code"}) @@ -325,7 +325,7 @@ func (m *TableManager) SyncTables(ctx context.Context) error { } expected := m.calculateExpectedTables() - level.Debug(util_log.Logger).Log("msg", "synching tables", "expected_tables", len(expected)) + level.Debug(util_log.Logger).Log("msg", "syncing tables", "expected_tables", len(expected)) toCreate, toCheckThroughput, toDelete, err := m.partitionTables(ctx, expected) if err != nil {