This repository was archived by the owner on Oct 22, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages/core/src/drivers/engine Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ export interface ActorsGetOrCreateByIdRequest {
8181 name : string ;
8282 key : string ;
8383 runner_name_selector : string ;
84- crash_policy : "restart" ;
84+ crash_policy : string ;
8585 input ?: string | null ;
8686}
8787
Original file line number Diff line number Diff line change @@ -240,7 +240,7 @@ export class EngineManagerDriver implements ManagerDriver {
240240 key : serializeActorKey ( key ) ,
241241 runner_name_selector : this . #config. runnerName ,
242242 input : input ? cbor . encode ( actorInput ) . toString ( "base64" ) : undefined ,
243- crash_policy : "restart " ,
243+ crash_policy : "sleep " ,
244244 } ) ;
245245
246246 const actorId = response . actor_id ;
@@ -279,7 +279,7 @@ export class EngineManagerDriver implements ManagerDriver {
279279 runner_name_selector : this . #config. runnerName ,
280280 key : serializeActorKey ( key ) ,
281281 input : input ? cbor . encode ( input ) . toString ( "base64" ) : null ,
282- crash_policy : "restart " ,
282+ crash_policy : "sleep " ,
283283 } ) ;
284284 const actorId = result . actor . actor_id ;
285285
You can’t perform that action at this time.
0 commit comments