mirror of
https://github.com/mastodon/mastodon.git
synced 2026-08-17 02:56:38 -05:00
12 lines
225 B
Ruby
12 lines
225 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Mastodon::WorkerBatchMiddleware
|
|
def call(_worker, msg, _queue, _redis_pool = nil)
|
|
if (batch = Thread.current[:batch])
|
|
batch.add_jobs([msg['jid']])
|
|
end
|
|
|
|
yield
|
|
end
|
|
end
|