Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BEAM-10976] Bundle finalization: Harness and some exec changes #16980

Merged
merged 10 commits into from
Mar 8, 2022
Prev Previous commit
Next Next commit
Doc nit
Co-authored-by: Daniel Oliveira <younghoono@gmail.com>
  • Loading branch information
damccorm and youngoli committed Mar 8, 2022
commit 3e4a89d78f8d13f6983a44d821148820288ea552
2 changes: 1 addition & 1 deletion sdks/go/pkg/beam/core/runtime/exec/plan.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ func (p *Plan) Execute(ctx context.Context, id string, manager DataContext) erro
return nil
}

// Runs any callbacks registered by the bundleFinalizer. Should be run on bundle finalization.
// Finalize runs any callbacks registered by the bundleFinalizer. Should be run on bundle finalization.
func (p *Plan) Finalize() error {
if p.status != Up {
return errors.Errorf("invalid status for plan %v: %v", p.id, p.status)
Expand Down