Skip to content

Commit

Permalink
events_wrapper: Fix passing of event types.
Browse files Browse the repository at this point in the history
  • Loading branch information
palaga authored Oct 15, 2024
1 parent db9b0e4 commit e6791d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/events_wrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function eventsWrapper(config) {
// eslint-disable-next-line no-constant-condition
while (true) {
try {
const params = { eventTypes };
const params = { event_types: eventTypes };
res = await z.queues.register(params); // eslint-disable-line no-await-in-loop
if (res.result === 'error') {
logError(res.msg);
Expand Down

0 comments on commit e6791d7

Please sign in to comment.