Rename to SwapTraceChunkWorker from StashTraceChunkWorker
This commit is contained in:
parent
242b4afa8f
commit
f8f62ea5b6
5 changed files with 3429 additions and 63 deletions
|
@ -84,7 +84,7 @@ module Ci
|
|||
def schedule_to_db
|
||||
return if db?
|
||||
|
||||
StashTraceChunkWorker.perform_async(id)
|
||||
SwapTraceChunkWorker.perform_async(id)
|
||||
end
|
||||
|
||||
def fullfilled?
|
||||
|
|
|
@ -62,7 +62,7 @@
|
|||
- pipeline_processing:pipeline_update
|
||||
- pipeline_processing:stage_update
|
||||
- pipeline_processing:update_head_pipeline_for_merge_request
|
||||
- pipeline_processing:stash_trace_chunk
|
||||
- pipeline_processing:swap_trace_chunk
|
||||
|
||||
- repository_check:repository_check_clear
|
||||
- repository_check:repository_check_single_repository
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
class StashTraceChunkWorker
|
||||
class SwapTraceChunkWorker
|
||||
include ApplicationWorker
|
||||
include PipelineQueue
|
||||
|
3482
spec/fixtures/trace/sample_trace
vendored
3482
spec/fixtures/trace/sample_trace
vendored
File diff suppressed because one or more lines are too long
|
@ -70,7 +70,7 @@ describe Ci::JobTraceChunk, :clean_gitlab_redis_shared_state do
|
|||
let(:value) { 'a' * described_class::CHUNK_SIZE }
|
||||
|
||||
it 'schedules stashing data' do
|
||||
expect(StashTraceChunkWorker).to receive(:perform_async).once
|
||||
expect(SwapTraceChunkWorker).to receive(:perform_async).once
|
||||
|
||||
subject
|
||||
end
|
||||
|
@ -107,7 +107,7 @@ describe Ci::JobTraceChunk, :clean_gitlab_redis_shared_state do
|
|||
|
||||
context 'when fullfilled chunk size' do
|
||||
it 'does not schedule stashing data' do
|
||||
expect(StashTraceChunkWorker).not_to receive(:perform_async)
|
||||
expect(SwapTraceChunkWorker).not_to receive(:perform_async)
|
||||
|
||||
subject
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue