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 de4fad7 commit 446da91Copy full SHA for 446da91
lib/friend-microservices-stack.ts
@@ -108,13 +108,13 @@ export class FriendMicroservicesStack extends Stack {
108
})
109
);
110
111
- const stateHandleDLQ = new SqsDlq(new Queue(this, "stateHandleDLQ"));
+ const stateHandlerDLQ = new SqsDlq(new Queue(this, "stateHandleDLQ"));
112
113
const streamEventSourceProps: StreamEventSourceProps = {
114
startingPosition: StartingPosition.LATEST,
115
batchSize: 5,
116
retryAttempts: 1,
117
- onFailure: stateHandleDLQ,
+ onFailure: stateHandlerDLQ,
118
reportBatchItemFailures: true,
119
};
120
0 commit comments