Merge branch 'main' into patch-1

This commit is contained in:
Muhammad Nawzad 2023-03-12 16:31:30 +03:00 committed by GitHub
commit 27852eb589
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

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

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true # frozen_string_literal: true
module Outboxable module Outboxable
VERSION = '0.1.1' VERSION = "0.1.2"
end end