Fixes disgusting bug

This commit is contained in:
Brusk Awat 2023-03-12 15:44:50 +03:00 committed by GitHub
parent 5536cd3e79
commit 0213750ea3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,11 +7,11 @@ module Outboxable
def initialize
@connection = Bunny.new(
host: RabbitCarrots.configuration.rabbitmq_host,
port: RabbitCarrots.configuration.rabbitmq_port,
user: RabbitCarrots.configuration.rabbitmq_user,
password: RabbitCarrots.configuration.rabbitmq_password,
vhost: RabbitCarrots.configuration.rabbitmq_vhost
host: Outboxable.configuration.rabbitmq_host,
port: Outboxable.configuration.rabbitmq_port,
user: Outboxable.configuration.rabbitmq_user,
password: Outboxable.configuration.rabbitmq_password,
vhost: Outboxable.configuration.rabbitmq_vhost
)
@connection.start