Skip to content

Commit 3c882d1

Browse files
Add empty event auto ack
1 parent 14ec72d commit 3c882d1

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/event-store/event-store.service.ts

+10
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,16 @@ export class EventStoreService implements OnModuleDestroy, OnModuleInit {
196196
// use default onEvent
197197
const { event } = payload;
198198

199+
if (!event) {
200+
this.logger.warn(
201+
`Received empty event that could not be resolved!`,
202+
);
203+
if (!subscription._autoAck && subscription.hasOwnProperty('_autoAck')) {
204+
await subscription.acknowledge([payload]);
205+
}
206+
return;
207+
}
208+
199209
// TODO handle not JSON
200210
if (!event.isJson) {
201211
// TODO add info on error not coded

0 commit comments

Comments
 (0)