OpenTAKServer
OpenTAKServer copied to clipboard
Add TTL to messages published to RabbitMQ
Also add OTS_RABBITMQ_TTL
option.
channel.basic_publish(
exchange='',
routing_key='hello_world',
properties=pika.BasicProperties(
expiration='60000',
),
body='my message'
)