Skip to content
Snippets Groups Projects
Commit 950df8ba authored by Shinya Maeda's avatar Shinya Maeda
Browse files

Rename BuildTraceSwapChunkWorker to BuildTraceChunkFlushToDBWorker

parent abe87373
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -99,7 +99,7 @@ module Ci
def schedule_to_db
return if db?
 
BuildTraceSwapChunkWorker.perform_async(id)
BuildTraceChunkFlushToDBWorker.perform_async(id)
end
 
def fullfilled?
Loading
Loading
Loading
Loading
@@ -66,7 +66,7 @@
- pipeline_processing:pipeline_update
- pipeline_processing:stage_update
- pipeline_processing:update_head_pipeline_for_merge_request
- pipeline_processing:build_trace_swap_chunk
- pipeline_processing:build_trace_chunk_flush_to_db
 
- repository_check:repository_check_clear
- repository_check:repository_check_single_repository
Loading
Loading
class BuildTraceSwapChunkWorker
class BuildTraceChunkFlushToDBWorker
include ApplicationWorker
include PipelineQueue
 
Loading
Loading
Loading
Loading
@@ -75,7 +75,7 @@ describe Ci::BuildTraceChunk, :clean_gitlab_redis_shared_state do
let(:value) { 'a' * described_class::CHUNK_SIZE }
 
it 'schedules stashing data' do
expect(BuildTraceSwapChunkWorker).to receive(:perform_async).once
expect(BuildTraceChunkFlushToDBWorker).to receive(:perform_async).once
 
subject
end
Loading
Loading
@@ -112,7 +112,7 @@ describe Ci::BuildTraceChunk, :clean_gitlab_redis_shared_state do
 
context 'when fullfilled chunk size' do
it 'does not schedule stashing data' do
expect(BuildTraceSwapChunkWorker).not_to receive(:perform_async)
expect(BuildTraceChunkFlushToDBWorker).not_to receive(:perform_async)
 
subject
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment