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 text was updated successfully, but these errors were encountered:
vartagg
changed the title
If value passed to 'x-message-ttl' is greater than or equal 128, then invalid Negative value sent to server
If value passed to 'x-message-ttl' is greater than or equal 128, then invalid Negative value is sending to server
Jun 4, 2019
The value of the TTL argument or policy must be a non-negative integer (0 <= n), describing the TTL period in milliseconds. Thus a value of 1000 means that a message added to the queue will live in the queue for 1 second or until it is delivered to a consumer. The argument can be of AMQP 0-9-1 type short-short-int, short-int, long-int, or long-long-int.
Steps to reproduce
If try something like this (pass
128
value):Then this error happened:
And if try with
129
value:Then this error happened:
130
->-126
131
->-125
etc..Environment
OS
:MacOS 10.14
Python
:3.7.3
Package version
:aioamqp==0.13.0
RabbitMQ 3.7.13 on Erlang 21.3
The text was updated successfully, but these errors were encountered: