diff options
author | Valery Piashchynski <[email protected]> | 2021-08-20 11:52:57 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-08-20 11:52:57 +0300 |
commit | 7c155577ee9f7a4c19bd8aa04d7b44f908f0b5e7 (patch) | |
tree | 16b9c534a0b756010e3929fb753f404f26507069 /plugins | |
parent | d2a1168e78428f4327ed4cdfe80991f75b34d4f5 (diff) |
Correct AMQP Declare RPC constants
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/jobs/drivers/amqp/config.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/jobs/drivers/amqp/config.go b/plugins/jobs/drivers/amqp/config.go index c5e985a5..1ec089f1 100644 --- a/plugins/jobs/drivers/amqp/config.go +++ b/plugins/jobs/drivers/amqp/config.go @@ -3,9 +3,9 @@ package amqp // pipeline rabbitmq info const ( exchangeKey string = "exchange" - exchangeType string = "exchange-type" + exchangeType string = "exchange_type" queue string = "queue" - routingKey string = "routing-key" + routingKey string = "routing_key" prefetch string = "prefetch" exclusive string = "exclusive" priority string = "priority" |