Skip to content

Commit 6f10d70

Browse files
authored
Fixed tn_complete_to_umccrise_draft_rule (#1049)
* Fixed tn_complete_to_umccrise_draft_rule * Somehow it needs to wrap with an array bracket. Evaluated in the EventBridge console. * Fixed wgts_subscribe_to_samplesheet_shower
1 parent 5971c4b commit 6f10d70

File tree

2 files changed

+10
-6
lines changed
  • lib/workload/stateless/stacks/stacky-mcstackface/glue-constructs
    • kwik/part_4/push-fastq-list-row-qc-complete-event
    • pva/part_2/tn-complete-to-umccrise-draft

2 files changed

+10
-6
lines changed

lib/workload/stateless/stacks/stacky-mcstackface/glue-constructs/kwik/part_4/push-fastq-list-row-qc-complete-event/index.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,11 @@ export class FastqListRowQcCompleteConstruct extends Construct {
140140
detail: {
141141
status: [{ 'equals-ignore-case': this.WgtsQcCompleteMap.triggerStatus }],
142142
workflow: {
143-
name: {
144-
'equals-ignore-case': this.WgtsQcCompleteMap.triggerWorkflowName,
145-
},
143+
name: [
144+
{
145+
'equals-ignore-case': this.WgtsQcCompleteMap.triggerWorkflowName,
146+
},
147+
],
146148
},
147149
},
148150
},

lib/workload/stateless/stacks/stacky-mcstackface/glue-constructs/pva/part_2/tn-complete-to-umccrise-draft/index.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -199,9 +199,11 @@ export class TnCompleteToUmccriseReadyConstruct extends Construct {
199199
detail: {
200200
status: [{ 'equals-ignore-case': this.UmccriseReadyMap.triggerStatus }],
201201
workflow: {
202-
name: {
203-
'equals-ignore-case': this.UmccriseReadyMap.triggerWorkflowName,
204-
},
202+
name: [
203+
{
204+
'equals-ignore-case': this.UmccriseReadyMap.triggerWorkflowName,
205+
},
206+
],
205207
},
206208
},
207209
},

0 commit comments

Comments
 (0)