Fix unknown type in sharding up log

Signed-off-by: Chris Marchbanks <csmarchbanks@gmail.com>
This commit is contained in:
Chris Marchbanks 2019-11-26 06:22:56 -07:00
parent bd1c66861a
commit 0e684ca205
No known key found for this signature in database
GPG Key ID: B7FD940BC86A8E7A
1 changed files with 1 additions and 1 deletions

View File

@ -500,7 +500,7 @@ func (t *QueueManager) updateShardsLoop() {
// to stay close to shardUpdateDuration.
select {
case t.reshardChan <- desiredShards:
level.Info(t.logger).Log("msg", "Remote storage resharding", "from", t.numShards, "to", numShards)
level.Info(t.logger).Log("msg", "Remote storage resharding", "from", t.numShards, "to", desiredShards)
t.numShards = desiredShards
default:
level.Info(t.logger).Log("msg", "Currently resharding, skipping.")