Removed the references to a pruning 'side' in the singlepruner logging code and the snapjob prometheus thing.

This commit is contained in:
InsanePrawn
2018-11-21 02:52:33 +01:00
parent 141e49727c
commit 7de3c0a09a
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -181,13 +181,13 @@ func (f *PrunerFactory) BuildReceiverPruner(ctx context.Context, target Target,
func (f *SinglePrunerFactory) BuildSinglePruner(ctx context.Context, target Target, receiver History) *Pruner {
p := &Pruner{
args: args{
WithLogger(ctx, GetLogger(ctx).WithField("prune_side", "sender")),
ctx,
target,
receiver,
f.keepRules,
f.retryWait,
f.considerSnapAtCursorReplicated,
f.promPruneSecs.WithLabelValues("sender"),
f.promPruneSecs.WithLabelValues(),
},
state: Plan,
}