Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ GIT
PATH
remote: .
specs:
rabbit_messaging (1.6.1)
rabbit_messaging (1.6.2)
bunny (~> 2.0)
kicks

Expand Down
4 changes: 3 additions & 1 deletion lib/rabbit.rb
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ class Config
:connection_reset_exceptions,
:logger_message_size_limit

attr_writer :receive_logger, :publish_logger, :malformed_logger

def initialize( # rubocop:disable Metrics/MethodLength
group_id: nil,
project_id: nil,
Expand Down Expand Up @@ -58,7 +60,7 @@ def initialize( # rubocop:disable Metrics/MethodLength
self.project_id = project_id
self.queue_suffix = queue_suffix
self.hooks = hooks
self.environment = environment
self.environment = environment.to_sym
self.queue_name_conversion = queue_name_conversion
self.receiving_job_class_callable = receiving_job_class_callable
self.handler_resolver_callable = handler_resolver_callable
Expand Down
2 changes: 1 addition & 1 deletion lib/rabbit/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Rabbit
VERSION = "1.6.1"
VERSION = "1.6.2"
end