Skip to content
Snippets Groups Projects

make workflow setup account for case where previous condor files and logs exist in processing directory

Merged Charlotte Hausman requested to merge tinker_with_old_files into main
1 unresolved thread
2 files
+ 29
2
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -197,7 +197,7 @@ class SingleQAStateMachine(StateMachine):
SendMessage(arguments="execution_complete"),
SendNotification(arguments=json.dumps({"template": "workflow-complete", "send_to_qa": True})),
SendNotification(
arguments=json.dumps({"template": workflow_name + "_complete", "send_to_qa": True})
arguments=json.dumps({"template": workflow_name + "_complete", "needs_contacts": True})
),
],
("Error", "ingestion-failed"): [
@@ -272,7 +272,7 @@ class DoubleQAStateMachine(StateMachine):
SendMessage(arguments="execution_complete"),
SendNotification(arguments=json.dumps({"template": "workflow-complete", "send_to_qa": True})),
SendNotification(
arguments=json.dumps({"template": workflow_name + "_complete", "send_to_qa": True})
arguments=json.dumps({"template": workflow_name + "_complete", "needs_contacts": True})
),
],
("Error", "ingestion-failed"): [
Loading