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

Rename SwapTraceChunkWorker to BuildTraceSwapChunkWorker

parent 8a7654a5
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -92,7 +92,7 @@ module Ci
def schedule_to_db
return if db?
 
SwapTraceChunkWorker.perform_async(id)
BuildTraceSwapChunkWorker.perform_async(id)
end
 
def fullfilled?
Loading
Loading
Loading
Loading
@@ -65,7 +65,7 @@
- pipeline_processing:pipeline_update
- pipeline_processing:stage_update
- pipeline_processing:update_head_pipeline_for_merge_request
- pipeline_processing:swap_trace_chunk
- pipeline_processing:build_trace_swap_chunk
 
- repository_check:repository_check_clear
- repository_check:repository_check_single_repository
Loading
Loading
class SwapTraceChunkWorker
class BuildTraceSwapChunkWorker
include ApplicationWorker
include PipelineQueue
 
Loading
Loading
Loading
Loading
@@ -71,7 +71,7 @@ describe Ci::JobTraceChunk, :clean_gitlab_redis_shared_state do
let(:value) { 'a' * described_class::CHUNK_SIZE }
 
it 'schedules stashing data' do
expect(SwapTraceChunkWorker).to receive(:perform_async).once
expect(BuildTraceSwapChunkWorker).to receive(:perform_async).once
 
subject
end
Loading
Loading
@@ -108,7 +108,7 @@ describe Ci::JobTraceChunk, :clean_gitlab_redis_shared_state do
 
context 'when fullfilled chunk size' do
it 'does not schedule stashing data' do
expect(SwapTraceChunkWorker).not_to receive(:perform_async)
expect(BuildTraceSwapChunkWorker).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