From dba3d15b026f65774d0e28549a2745e3137043cd Mon Sep 17 00:00:00 2001 From: Boris Nagaev Date: Sun, 1 Sep 2024 13:00:36 -0300 Subject: [PATCH] sweepbatcher: fix typo in log message --- sweepbatcher/sweep_batch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sweepbatcher/sweep_batch.go b/sweepbatcher/sweep_batch.go index 337b40a01..ce0836f9c 100644 --- a/sweepbatcher/sweep_batch.go +++ b/sweepbatcher/sweep_batch.go @@ -678,7 +678,7 @@ func (b *batch) Run(ctx context.Context) error { // Check that batch is still open. if b.state != Open { b.log.Debugf("Skipping publishing, because the"+ - "batch is not open (%v).", b.state) + " batch is not open (%v).", b.state) continue }