Skip to content

Commit

Permalink
Fix teardown task (#245)
Browse files Browse the repository at this point in the history
Updates the pipeline step name to match the new steps from the table.

Signed-off-by: Rémy Greinhofer <[email protected]>
  • Loading branch information
rgreinho authored Sep 4, 2024
1 parent eb87874 commit 9cb6835
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lambdas/src/bna-teardown.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ async fn function_handler(event: LambdaEvent<TaskInput>) -> Result<(), Error> {
let patch_url = format!("{url}/{state_machine_id}");
let pipeline = BNAPipeline {
state_machine_id,
step: Some("TearDown".to_string()),
step: Some("Cleanup".to_string()),
..Default::default()
};
update_pipeline(&patch_url, &auth, &pipeline)?;
Expand Down

0 comments on commit 9cb6835

Please sign in to comment.