Skip to content

Commit 978b35c

Browse files
authored
Remove duplicate log message (#4934)
Signed-off-by: Daniel Deluiggi <ddeluigg@amazon.com> Signed-off-by: Daniel Deluiggi <ddeluigg@amazon.com>
1 parent 123d398 commit 978b35c

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@
7070
* [BUGFIX] Respecting `-tracing.otel.sample-ratio` configuration when enabling OpenTelemetry tracing with X-ray. #4862
7171
* [BUGFIX] QueryFrontend: fixed query_range requests when query has `start` equals to `end`. #4877
7272
* [BUGFIX] AlertManager: fixed issue introduced by #4495 where templates files were being deleted when using alertmanager local store. #4890
73+
* [BUGFIX] Ingester: fixed incorrect logging at the start of ingester block shipping logic. #4934
7374

7475
## 1.13.0 2022-07-14
7576

pkg/ingester/ingester.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2102,7 +2102,6 @@ func (i *Ingester) shipBlocks(ctx context.Context, allowed *util.AllowedTenants)
21022102
// particularly important for the JOINING state because there could
21032103
// be a blocks transfer in progress (from another ingester) and if we
21042104
// run the shipper in such state we could end up with race conditions.
2105-
level.Info(logutil.WithContext(ctx, i.logger)).Log("msg", "TSDB blocks shipping has been skipped because of the current ingester state")
21062105
if i.lifecycler != nil {
21072106
if ingesterState := i.lifecycler.GetState(); ingesterState == ring.PENDING || ingesterState == ring.JOINING {
21082107
level.Info(logutil.WithContext(ctx, i.logger)).Log("msg", "TSDB blocks shipping has been skipped because of the current ingester state", "state", ingesterState)

0 commit comments

Comments
 (0)