Skip to content

Commit a596fba

Browse files
committed
fix(clusters): run scale workflow instead of signal
1 parent 34cf4eb commit a596fba

File tree

1 file changed

+1
-1
lines changed
  • svc/pkg/cluster/src/workflows/datacenter

1 file changed

+1
-1
lines changed

svc/pkg/cluster/src/workflows/datacenter/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ pub(crate) async fn cluster_datacenter(ctx: &mut WorkflowCtx, input: &Input) ->
8181
.await?;
8282

8383
// Scale
84-
ctx.signal(ctx.workflow_id(), Scale {}).await?;
84+
ctx.workflow(scale::Input { datacenter_id }).await?;
8585
}
8686
Main::Scale(_) => {
8787
ctx.workflow(scale::Input { datacenter_id }).await?;

0 commit comments

Comments
 (0)