我正在尝试通过 ruby stomp gem https://github.com/stompgem/stomp在带有x-dead-letter-exchange和x-message-ttl 标头的队列(RabbitMQ)上发布
它通过管理面板工作正常,但我看不到使用此代码发布的消息:
require 'stomp'
client = Stomp::Client.new("guest", "guest", "localhost", 61613)
client.publish("/queue/queue_with_dlx_header", "hello world!")
如果我在“正常”队列上尝试此操作,则消息会按预期发布。
有什么建议吗?