From 0213750ea3dc488226d3f0a13e73174b2cf9fc5e Mon Sep 17 00:00:00 2001 From: Brusk Awat Date: Sun, 12 Mar 2023 15:44:50 +0300 Subject: [PATCH 1/2] Fixes disgusting bug --- lib/outboxable/connection.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/outboxable/connection.rb b/lib/outboxable/connection.rb index af3f92c..867c6ff 100644 --- a/lib/outboxable/connection.rb +++ b/lib/outboxable/connection.rb @@ -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 From c00d458ba596ce77370f276e810d61f1e3be6183 Mon Sep 17 00:00:00 2001 From: Brusk Awat Date: Sun, 12 Mar 2023 15:45:14 +0300 Subject: [PATCH 2/2] Update version.rb --- lib/outboxable/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/outboxable/version.rb b/lib/outboxable/version.rb index 8e32ea5..01b313b 100644 --- a/lib/outboxable/version.rb +++ b/lib/outboxable/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Outboxable - VERSION = "0.1.1" + VERSION = "0.1.2" end