From a1d966851c4f368225ae4c4a70d065a1619b313d Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Wed, 15 Apr 2026 08:52:09 -0700 Subject: [PATCH] fix(iterative_verifier): correct 'occured' -> 'occurred' in error log messages Two zap log lines in iterative_verifier.go used 'occured' instead of 'occurred': - line 377: 'error occured during table verification' - line 480: 'error occured in reverification' Both messages are emitted by the table-verification routine and end up in production log output, so correcting the spelling improves operator-facing telemetry. go build ./... stays clean (go vet warnings are pre-existing and unrelated). --- iterative_verifier.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iterative_verifier.go b/iterative_verifier.go index 0ba1b07c..67039015 100644 --- a/iterative_verifier.go +++ b/iterative_verifier.go @@ -374,7 +374,7 @@ func (v *IterativeVerifier) iterateAllTables(mismatchedPaginationKeyFunc func(st err := v.iterateTableFingerprints(table, mismatchedPaginationKeyFunc) if err != nil { - v.logger.WithError(err).WithField("table", table.String()).Error("error occured during table verification") + v.logger.WithError(err).WithField("table", table.String()).Error("error occurred during table verification") } return nil, err }, @@ -477,7 +477,7 @@ func (v *IterativeVerifier) verifyStore(sourceTag string, additionalTags []Metri if resultAndErr.ErroredOrFailed() { if resultAndErr.Error != nil { - v.logger.WithError(resultAndErr.Error).Error("error occured in reverification") + v.logger.WithError(resultAndErr.Error).Error("error occurred in reverification") } else { v.logger.Errorf("failed reverification: %s", resultAndErr.Result.Message) }