plugins
#255
Replies: 1 comment
-
I see nothing wrong with your code. However, the publish function you are using comes from an external package: // declaration
pub := rabbitroutine.NewRetryPublisher(
ensurePub,
rabbitroutine.PublishMaxAttemptsSetup(3),
rabbitroutine.PublishDelaySetup(rabbitroutine.LinearDelay(10*time.Millisecond)),
)
// .....
// publish
err = pub.Publish(ctx, exchange, routingKey, msg) The error is not coming from this library. You have more chances of finding help in the repo of |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Describe the bug
when i use plugin: https://github.com/rabbitmq/rabbitmq-delayed-message-exchange, publish return error :queue not bound
here is my code:
Code
Reproduction steps
Expected behavior
the delay message publish success, but Publish func return error
Beta Was this translation helpful? Give feedback.
All reactions