Skip to content

Commit 3d42466

Browse files
Update run-worker-process.mdx
1 parent 1c8767b commit 3d42466

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

docs/develop/go/workers/run-worker-process.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ Create a [`Worker`](https://pkg.go.dev/go.temporal.io/sdk/worker#Worker) by call
2222
2. The name of the Task Queue to poll.
2323
3. A [`worker.Options`](https://pkg.go.dev/go.temporal.io/sdk/internal#WorkerOptions) struct (can be empty for defaults).
2424

25-
Register your Workflow and Activity types, then call `Run()` to start polling.
25+
Register your Workflow and Activity types, then call `Run()` to start polling. The Worker process is a long-running process that blocks while polling for tasks.
26+
Run it in a separate terminal from your starter code or other application logic.
2627

2728
```go
2829
package main

0 commit comments

Comments
 (0)