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
Fs2RabbitConfig currently uses ints for durations, which is confusing: connectionTimeout is defined in milliseconds, requestedHeartbeat is defined in seconds.
Moreover, official examples use a very low value for connectionTimeout (3), which causes issues when being used in real environments, and adds to the confusion.
This can be solved in multiple ways, but I think the best solution would be to be able to specify durations as such (10 s, etc).
This would introduce some backward compatibility problems, so I'm curious what you think.
The text was updated successfully, but these errors were encountered:
Hi guys!
Fs2RabbitConfig currently uses ints for durations, which is confusing:
connectionTimeout
is defined in milliseconds,requestedHeartbeat
is defined in seconds.Moreover, official examples use a very low value for
connectionTimeout
(3), which causes issues when being used in real environments, and adds to the confusion.This can be solved in multiple ways, but I think the best solution would be to be able to specify durations as such (10 s, etc).
This would introduce some backward compatibility problems, so I'm curious what you think.
The text was updated successfully, but these errors were encountered: