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
5 changes: 5 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2.3.2 / 2020-04-28
==================

* Enable overriding options in Transport (<https://github.com/segmentio/analytics-ruby/pull/222>)

2.3.1 / 2020-04-13
==================

Expand Down
2 changes: 1 addition & 1 deletion lib/segment/analytics/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Segment
class Analytics
VERSION = '2.3.1'
VERSION = '2.3.2'
end
end
2 changes: 1 addition & 1 deletion lib/segment/analytics/worker.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def initialize(queue, write_key, options = {})
batch_size = options[:batch_size] || Defaults::MessageBatch::MAX_SIZE
@batch = MessageBatch.new(batch_size)
@lock = Mutex.new
@transport = Transport.new
@transport = Transport.new(options)
end

# public: Continuously runs the loop to check for new events
Expand Down