Skip to content

Commit

Permalink
feat: prioritize organic deployments by adding priority message attri…
Browse files Browse the repository at this point in the history
…bute
  • Loading branch information
aleortega committed Jan 17, 2025
1 parent ea08ce4 commit 84d079f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/adapters/sns/publisher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ async function createSnsPublisherComponent(
Message: JSON.stringify(message),
MessageAttributes: {
type: { DataType: 'String', StringValue: Events.Type.CATALYST_DEPLOYMENT },
subType: { DataType: 'String', StringValue: entity.entityType as Events.SubType.CatalystDeployment }
subType: { DataType: 'String', StringValue: entity.entityType as Events.SubType.CatalystDeployment },
priority: { DataType: 'String', StringValue: 'Enabled' }
}
})
)
Expand Down

0 comments on commit 84d079f

Please sign in to comment.