From: Ward Vandewege Date: Mon, 1 Feb 2021 01:13:55 +0000 (-0500) Subject: Fix golint warning. X-Git-Tag: 2.2.0~148 X-Git-Url: https://git.arvados.org/arvados.git/commitdiff_plain/8646fae34fff9aa379a34388e90106f31d5206a4 Fix golint warning. No issue # Arvados-DCO-1.1-Signed-off-by: Ward Vandewege --- diff --git a/tools/keep-block-check/keep-block-check.go b/tools/keep-block-check/keep-block-check.go index 60d72773c1..fec699f19f 100644 --- a/tools/keep-block-check/keep-block-check.go +++ b/tools/keep-block-check/keep-block-check.go @@ -247,7 +247,7 @@ func performKeepBlockCheck(kc *keepclient.KeepClient, blobSignatureTTL time.Dura log.Printf("Verify block totals: %d attempts, %d successes, %d errors", totalBlocks, totalBlocks-notFoundBlocks, notFoundBlocks) if notFoundBlocks > 0 { - return fmt.Errorf("Block verification failed for %d out of %d blocks with matching prefix.", notFoundBlocks, totalBlocks) + return fmt.Errorf("Block verification failed for %d out of %d blocks with matching prefix", notFoundBlocks, totalBlocks) } return nil