From 0872f4ff16b37365bebb58d458c14fb580ad3113 Mon Sep 17 00:00:00 2001 From: Josh Siegel Date: Wed, 4 Jan 2023 20:21:40 +0000 Subject: [PATCH] algorand/recover: format fix --- node/pkg/common/scissors.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node/pkg/common/scissors.go b/node/pkg/common/scissors.go index 41cb99e4d..f543d14e1 100644 --- a/node/pkg/common/scissors.go +++ b/node/pkg/common/scissors.go @@ -28,7 +28,7 @@ func RunWithScissors(ctx context.Context, errC chan error, name string, runnable default: errC <- fmt.Errorf("%s: %v", name, x) } - ScissorsErrors.WithLabelValues("scissors", name).Inc() + ScissorsErrors.WithLabelValues("scissors", name).Inc() } }() @@ -49,7 +49,7 @@ func WrapWithScissors(runnable supervisor.Runnable, name string) supervisor.Runn default: result = fmt.Errorf("%s: %v", name, x) } - ScissorsErrors.WithLabelValues("scissors", name).Inc() + ScissorsErrors.WithLabelValues("scissors", name).Inc() } }()