Skip to content

Commit e6791d7

Browse files
authored
events_wrapper: Fix passing of event types.
1 parent db9b0e4 commit e6791d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/events_wrapper.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function eventsWrapper(config) {
2121
// eslint-disable-next-line no-constant-condition
2222
while (true) {
2323
try {
24-
const params = { eventTypes };
24+
const params = { event_types: eventTypes };
2525
res = await z.queues.register(params); // eslint-disable-line no-await-in-loop
2626
if (res.result === 'error') {
2727
logError(res.msg);

0 commit comments

Comments
 (0)