app/vmagent/remotewrite: do not reset empty relabelCtx

This commit is contained in:
Aliaksandr Valialkin 2020-03-03 15:00:52 +02:00
parent 02b55c72dc
commit c31d640eb9

View file

@ -106,7 +106,9 @@ func Push(wr *prompbmarshal.WriteRequest) {
for _, rwctx := range rwctxs {
rwctx.Push(tssBlock)
}
rctx.reset()
if rctx != nil {
rctx.reset()
}
}
if rctx != nil {
putRelabelCtx(rctx)