We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b65295c commit c8e50f7Copy full SHA for c8e50f7
webapp/utils/aws/ecs.py
@@ -46,11 +46,13 @@ def task_family_revision(self) -> str:
46
47
def execute_review_run(self) -> str | None:
48
logger.info("Executing ECS task for 'Review Run'")
49
- return self.run(run_type="review", commands=["--blah"])
+ return self.run(run_type="review", commands=["process-invoices", "--real-run"])
50
51
def execute_final_run(self) -> str | None:
52
logger.info("Executing ECS task for 'Final Run'")
53
- return self.run(run_type="final", commands=["--blah", "--bloop"])
+ return self.run(
54
+ run_type="final", commands=["process-invoices", "--real-run", "--final-run"]
55
+ )
56
57
def run(
58
self, run_type: Literal["review", "final"], commands: list | None = None
0 commit comments