Skip to content

Commit

Permalink
events_wrapper: fix event types
Browse files Browse the repository at this point in the history
  • Loading branch information
palaga committed Oct 11, 2024
1 parent db9b0e4 commit ae693f4
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 ae693f4

Please sign in to comment.