You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The QueuesClient.reconnectIntervalSeconds property should be in seconds. However, it is multiplied by 1000 in the constructor and treated like milliseconds.
The
QueuesClient.reconnectIntervalSeconds
property should be in seconds. However, it is multiplied by 1000 in the constructor and treated like milliseconds.From the
KubeMQClient
constructor:Here is a simple demo:
This program prints
10000
, and ends with anAssertionError
(if assertions are enabled). I would expect it to print10
and complete successfully.The text was updated successfully, but these errors were encountered: