Skip to content

Commit c8e50f7

Browse files
Set actual command args for Alma SAP invoices ECS task (#113)
1 parent b65295c commit c8e50f7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

webapp/utils/aws/ecs.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,13 @@ def task_family_revision(self) -> str:
4646

4747
def execute_review_run(self) -> str | None:
4848
logger.info("Executing ECS task for 'Review Run'")
49-
return self.run(run_type="review", commands=["--blah"])
49+
return self.run(run_type="review", commands=["process-invoices", "--real-run"])
5050

5151
def execute_final_run(self) -> str | None:
5252
logger.info("Executing ECS task for 'Final Run'")
53-
return self.run(run_type="final", commands=["--blah", "--bloop"])
53+
return self.run(
54+
run_type="final", commands=["process-invoices", "--real-run", "--final-run"]
55+
)
5456

5557
def run(
5658
self, run_type: Literal["review", "final"], commands: list | None = None

0 commit comments

Comments
 (0)