Skip to content

Commit

Permalink
CCOL-2039: Fix for ruby 2.6 error
Browse files Browse the repository at this point in the history
  • Loading branch information
Lionel Pereira committed Nov 29, 2023
1 parent 30e60fa commit 2c2cff1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/deimos/active_record_consume/batch_consumption.rb
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def uncompacted_update(messages)
invalid_records = []
BatchSlicer.
slice(messages).each do |slice|
valid, invalid = self.update_database(slice)
valid, invalid = update_database(slice)
valid_records.push(*valid) if valid.any?
invalid_records.push(*invalid) if invalid.any?
end
Expand Down

0 comments on commit 2c2cff1

Please sign in to comment.