fix request bytes size and continue is useless (#9635)

Signed-off-by: kalmanzhao <kalmanzhao@tencent.com>

Co-authored-by: kalmanzhao <kalmanzhao@tencent.com>
This commit is contained in:
sniper 2021-11-03 17:10:31 +08:00 committed by GitHub
parent edd05d7010
commit f82e56fbba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1168,7 +1168,7 @@ func (s *shards) sendSamplesWithBackoff(ctx context.Context, samples []prompb.Ti
return err
}
reqSize := len(*buf)
reqSize := len(req)
*buf = req
// An anonymous function allows us to defer the completion of our per-try spans
@ -1264,7 +1264,6 @@ func sendWriteRequestWithBackoff(ctx context.Context, cfg config.QueueConfig, l
}
try++
continue
}
}