File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ public class SayHelloWorkflow
136
136
// This is a lambda expression where the instance is typed. If this
137
137
// were static, you wouldn't need a parameter.
138
138
(MyActivities act ) => act .SayHello (name ),
139
- new () { ScheduleToCloseTimeout = TimeSpan .FromMinutes (5 ) });
139
+ new () { StartToCloseTimeout = TimeSpan .FromMinutes (5 ) });
140
140
}
141
141
}
142
142
```
@@ -401,7 +401,7 @@ public class GreetingWorkflow
401
401
// This is a static activity method. If it were an instance
402
402
// method, a typed parameter can be accepted in the lambda call.
403
403
() => GreetingActivities .CreateGreeting (greetingParams ),
404
- new () { ScheduleToCloseTimeout = TimeSpan .FromMinutes (5 ) });
404
+ new () { StartToCloseTimeout = TimeSpan .FromMinutes (5 ) });
405
405
Workflow .Logger .LogDebug (" Greeting set to {Greeting}" , currentGreeting );
406
406
407
407
// Wait for param update or complete signal. Note, cancellation can
You can’t perform that action at this time.
0 commit comments