Class: Ci::BuildTraceChunkFlushWorker
- Inherits:
-
Object
- Object
- Ci::BuildTraceChunkFlushWorker
- Includes:
- ApplicationWorker, PipelineBackgroundQueue
- Defined in:
- app/workers/ci/build_trace_chunk_flush_worker.rb
Constant Summary
Constants included from ApplicationWorker
ApplicationWorker::LOGGING_EXTRA_KEY
Constants included from WorkerAttributes
WorkerAttributes::NAMESPACE_WEIGHTS, WorkerAttributes::VALID_RESOURCE_BOUNDARIES, WorkerAttributes::VALID_URGENCIES
Instance Method Summary collapse
-
#perform(chunk_id) ⇒ Object
rubocop: disable CodeReuse/ActiveRecord.
Methods included from Gitlab::SidekiqVersioning::Worker
Methods included from WorkerContext
Instance Method Details
#perform(chunk_id) ⇒ Object
rubocop: disable CodeReuse/ActiveRecord
11 12 13 14 15 |
# File 'app/workers/ci/build_trace_chunk_flush_worker.rb', line 11 def perform(chunk_id) ::Ci::BuildTraceChunk.find_by(id: chunk_id).try do |chunk| chunk.persist_data! end end |