chore: Fix spelling of "syncing" (#8829)

This makes it consistent in the repository.
pull/8836/head
René Scheibe 3 years ago committed by GitHub
parent 0295fd4698
commit 76c2e910cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      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 {

Loading…
Cancel
Save