File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -245,8 +245,10 @@ func (bp *basePoller) stopping() bool {
245
245
}
246
246
}
247
247
248
- // doPoll runs the given pollFunc in a separate go routine. Returns when either of the conditions are met:
249
- // - poll succeeds, poll fails or worker is stopping
248
+ // doPoll runs the given pollFunc in a separate go routine. Returns when any of the conditions are met:
249
+ // - poll succeeds
250
+ // - poll fails
251
+ // - worker is stopping
250
252
func (bp * basePoller ) doPoll (pollFunc func (ctx context.Context ) (taskForWorker , error )) (taskForWorker , error ) {
251
253
if bp .stopping () {
252
254
return nil , errStop
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ the sole parameter it receives as part of its initialization as a parameter to t
51
51
52
52
func SimpleWorkflow(ctx workflow.Context, value string) error {
53
53
ao := workflow.ActivityOptions{
54
- TaskQueue: "sampleTaskQueue",
54
+ TaskQueue: "sampleTaskQueue",
55
55
ScheduleToCloseTimeout: time.Second * 60,
56
56
ScheduleToStartTimeout: time.Second * 60,
57
57
StartToCloseTimeout: time.Second * 60,
@@ -149,7 +149,7 @@ The primary responsibility of the workflow implementation is to schedule activit
149
149
straightforward way to do that is via the library method [workflow.ExecuteActivity]:
150
150
151
151
ao := workflow.ActivityOptions{
152
- TaskQueue: "sampleTaskQueue",
152
+ TaskQueue: "sampleTaskQueue",
153
153
ScheduleToCloseTimeout: time.Second * 60,
154
154
ScheduleToStartTimeout: time.Second * 60,
155
155
StartToCloseTimeout: time.Second * 60,
You can’t perform that action at this time.
0 commit comments