2
0

Fix number of new replies increasing even if reply was not fetched (#35577)

This commit is contained in:
Eugen Rochko
2025-07-29 12:47:18 +02:00
committed by GitHub
parent 20bbd20ef1
commit a368b29e27

View File

@@ -8,8 +8,8 @@ class FetchReplyWorker
def perform(child_url, options = {})
batch = WorkerBatch.new(options.delete('batch_id')) if options['batch_id']
FetchRemoteStatusService.new.call(child_url, **options.symbolize_keys)
result = FetchRemoteStatusService.new.call(child_url, **options.symbolize_keys)
ensure
batch&.remove_job(jid, increment: true)
batch&.remove_job(jid, increment: result.present?)
end
end