File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -372,7 +372,9 @@ export interface ActorStartOptions {
372
372
* Maximum time to wait for the actor run to finish, in seconds.
373
373
* If the limit is reached, the returned promise is resolved to a run object that will have
374
374
* status `READY` or `RUNNING` and it will not contain the actor run output.
375
- * If `waitForFinish` is null or undefined, the function waits for the actor to finish (default behavior).
375
+ * By default (or when `waitForFinish` is set to `0`), the function resolves immediately without waiting.
376
+ * The wait is limited to 60s and happens on the API directly, as opposed to the `call` method and its
377
+ * `waitSecs` option, which is implemented via polling on the client side instead (and has no limit like that).
376
378
*/
377
379
waitForFinish ?: number ;
378
380
You can’t perform that action at this time.
0 commit comments