Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/best-practices/worker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ production-ready Worker image:
[Dockerfile](https://github.com/temporalio/reference-app-orders-go/blob/main/Dockerfile)

```Dockerfile
FROM golang:1.23.8 AS oms-builder
FROM golang:1.24.1 AS oms-builder

WORKDIR /usr/src/oms

Expand Down
3 changes: 0 additions & 3 deletions docs/develop/go/cancellation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,7 @@ process and your use case which determines whether you want to return the Cancel
or Complete status regardless of whether a Cancellation has propagated to and/or skipped Activities.

<!--SNIPSTART go-features-cancellation-workflow {"selectedLines": ["14-15", "18", "20-38", "41", "43-45", "47-50"]}-->

[sample-apps/go/features/cancellation/workflow.go](https://github.com/temporalio/documentation/blob/main/sample-apps/go/features/cancellation/workflow.go)

```go
// ...
// YourWorkflow is a Workflow Definition that shows how it can be canceled.
Expand Down Expand Up @@ -79,7 +77,6 @@ func YourWorkflow(ctx workflow.Context) error {
return err
}
```

<!--SNIPEND-->

## Handle Cancellation in an Activity {#handle-cancellation-in-an-activity}
Expand Down
Loading