@@ -320,7 +320,7 @@ pub async fn pegboard_actor(ctx: &mut WorkflowCtx, input: &Input) -> Result<()>
320320 . await ?;
321321
322322 // Send signal to stop actor now that we know it will be sleeping
323- ctx. signal ( crate :: workflows:: runner :: Command {
323+ ctx. signal ( crate :: workflows:: runner2 :: Command {
324324 inner : protocol:: Command :: CommandStopActor (
325325 protocol:: CommandStopActor {
326326 actor_id : input. actor_id . to_string ( ) ,
@@ -349,7 +349,7 @@ pub async fn pegboard_actor(ctx: &mut WorkflowCtx, input: &Input) -> Result<()>
349349 } )
350350 . await ?;
351351
352- ctx. signal ( crate :: workflows:: runner :: Command {
352+ ctx. signal ( crate :: workflows:: runner2 :: Command {
353353 inner : protocol:: Command :: CommandStopActor (
354354 protocol:: CommandStopActor {
355355 actor_id : input. actor_id . to_string ( ) ,
@@ -492,7 +492,7 @@ pub async fn pegboard_actor(ctx: &mut WorkflowCtx, input: &Input) -> Result<()>
492492 } )
493493 . await ?;
494494
495- ctx. signal ( crate :: workflows:: runner :: Command {
495+ ctx. signal ( crate :: workflows:: runner2 :: Command {
496496 inner : protocol:: Command :: CommandStopActor ( protocol:: CommandStopActor {
497497 actor_id : input. actor_id . to_string ( ) ,
498498 generation : state. generation ,
@@ -506,7 +506,7 @@ pub async fn pegboard_actor(ctx: &mut WorkflowCtx, input: &Input) -> Result<()>
506506 Main :: Destroy ( _) => {
507507 // If allocated, send stop actor command
508508 if let Some ( runner_workflow_id) = state. runner_workflow_id {
509- ctx. signal ( crate :: workflows:: runner :: Command {
509+ ctx. signal ( crate :: workflows:: runner2 :: Command {
510510 inner : protocol:: Command :: CommandStopActor ( protocol:: CommandStopActor {
511511 actor_id : input. actor_id . to_string ( ) ,
512512 generation : state. generation ,
@@ -623,7 +623,7 @@ async fn handle_stopped(
623623 if let ( StoppedVariant :: Lost { .. } , Some ( old_runner_workflow_id) ) =
624624 ( & variant, old_runner_workflow_id)
625625 {
626- ctx. signal ( crate :: workflows:: runner :: Command {
626+ ctx. signal ( crate :: workflows:: runner2 :: Command {
627627 inner : protocol:: Command :: CommandStopActor ( protocol:: CommandStopActor {
628628 actor_id : input. actor_id . to_string ( ) ,
629629 generation : state. generation ,
0 commit comments