From 2ea91e504d27122e66c92d07d1edf3ac0e032794 Mon Sep 17 00:00:00 2001 From: Robert Burke Date: Mon, 7 Aug 2023 09:54:20 -0700 Subject: [PATCH] Update sdks/go/pkg/beam/runners/vet/vet.go Co-authored-by: Ritesh Ghorse --- sdks/go/pkg/beam/runners/vet/vet.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdks/go/pkg/beam/runners/vet/vet.go b/sdks/go/pkg/beam/runners/vet/vet.go index 2b5238ddc608..739f5db61c5b 100644 --- a/sdks/go/pkg/beam/runners/vet/vet.go +++ b/sdks/go/pkg/beam/runners/vet/vet.go @@ -54,7 +54,7 @@ func init() { type disabledResolver bool func (p disabledResolver) Sym2Addr(name string) (uintptr, error) { - return 0, errors.Errorf("%v not found. Register DoFns and functions with the the beam/register package.", name) + return 0, errors.Errorf("%v not found. Register DoFns and functions with the beam/register package.", name) } // Execute evaluates the pipeline on whether it can run without reflection.