1
0
مراية لـ https://github.com/postalserver/postal.git تم المزامنة 2025-11-30 21:32:30 +00:00

do not find the original message when returning batchable messages (#1225)

هذا الالتزام موجود في:
Charlie Smurthwaite
2020-09-30 15:34:38 +01:00
ملتزم من قبل GitHub
الأصل 113b11952f
التزام 8d44c90188

عرض الملف

@@ -111,7 +111,7 @@ class QueuedMessage < ApplicationRecord
time = Time.now
locker = Postal.locker_name
self.class.retriable.where(:batch_key => self.batch_key, :ip_address_id => self.ip_address_id, :locked_by => nil, :locked_at => nil).limit(limit).update_all(:locked_by => locker, :locked_at => time)
QueuedMessage.where(:batch_key => self.batch_key, :ip_address_id => self.ip_address_id, :locked_by => locker, :locked_at => time)
QueuedMessage.where(:batch_key => self.batch_key, :ip_address_id => self.ip_address_id, :locked_by => locker, :locked_at => time).where.not(id: self.id)
end
end