This is an automated email from the ASF dual-hosted git repository.
damondouglas pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new fe262b630b3 [lint] Doc comment exported ErrCancelled. (#30251)
fe262b630b3 is described below
commit fe262b630b3fd51854e667aa61a3ad0155f81634
Author: Robert Burke <[email protected]>
AuthorDate: Thu Feb 8 09:40:13 2024 -0800
[lint] Doc comment exported ErrCancelled. (#30251)
---
sdks/go/pkg/beam/runners/prism/internal/jobservices/management.go | 1 +
1 file changed, 1 insertion(+)
diff --git a/sdks/go/pkg/beam/runners/prism/internal/jobservices/management.go
b/sdks/go/pkg/beam/runners/prism/internal/jobservices/management.go
index 0da37ef0bd7..1c7e280dcdd 100644
--- a/sdks/go/pkg/beam/runners/prism/internal/jobservices/management.go
+++ b/sdks/go/pkg/beam/runners/prism/internal/jobservices/management.go
@@ -32,6 +32,7 @@ import (
)
var (
+ // ErrCancel represents a pipeline cancellation by the user.
ErrCancel = errors.New("pipeline canceled")
)