rabbitmq / rabbitmq-website

RabbitMQ website
https://www.rabbitmq.com
Apache License 2.0
792 stars 715 forks source link

Ensure time units used in AMQP(S) URIs are correct #293

Open michaelklishin opened 7 years ago

michaelklishin commented 7 years ago

From https://github.com/rabbitmq/rabbitmq-server/issues/1015:

When creating a federation upstream, in the uri if connection_timeout amqp param is added it needs to be in milliseconds not seconds according to the documentation.  This was found in 3.4.3.

Example
amqp://user:password@SERVER?heartbeat=10&connection_timeout=10

should be

amqp://user:password@SERVER?heartbeat=10&connection_timeout=10000
michaelklishin commented 7 years ago

There are three problems here:

therefore we might end up only updating the docs. But Erlang client/Shovel/Federation changes would also be considered.

TadMelton commented 7 years ago

THANKS!