queue name
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Torma Kristóf 2020-05-22 04:34:51 +02:00
parent d77b1508a3
commit fcb35bae01
Signed by: tormakris
GPG Key ID: DC83C4F2C41B1047

View File

@ -21,6 +21,6 @@ class Glue {
val inputQueueName = inputChannel.queueDeclare().queue val inputQueueName = inputChannel.queueDeclare().queue
inputChannel.queueBind(inputQueueName, envConfig.mqInputExchange, "") inputChannel.queueBind(inputQueueName, envConfig.mqInputExchange, "")
inputChannel.basicConsume(envConfig.mqInputExchange, true, GlueConsumer()) inputChannel.basicConsume(inputQueueName, true, GlueConsumer())
} }
} }