Skip to content

Commit

Permalink
[fix] [mq] Monitor :ndry-runs arg should be an int
Browse files Browse the repository at this point in the history
Was incorrectly being provided as an int string.
  • Loading branch information
ptaoussanis committed May 30, 2024
1 parent 41e5ed3 commit 81f58d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/taoensso/carmine/message_queue.clj
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@
(monitor
{:queue-size nqueued
:mid-circle-size nqueued ; Back compatibility
:ndry-runs (or ndry-runs 0)
:ndry-runs (enc/as-int (or ndry-runs 0))
:poll-reply poll-reply
:worker this}))

Expand Down

0 comments on commit 81f58d8

Please # to comment.