Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-11-29 18:13:12 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-11-29 18:13:12 +0300
commita22611115a99f74812dab8e1988bd5b0bda3f75d (patch)
tree881280da77ecf40cde888eb1bc6069ed99099ef9 /spec/services
parent548f365e6b98558df0ff886e675d66e15cb79027 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/services')
-rw-r--r--spec/services/ci/create_pipeline_service/logger_spec.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/spec/services/ci/create_pipeline_service/logger_spec.rb b/spec/services/ci/create_pipeline_service/logger_spec.rb
index 8f0c79b8b8e..dfe0859015d 100644
--- a/spec/services/ci/create_pipeline_service/logger_spec.rb
+++ b/spec/services/ci/create_pipeline_service/logger_spec.rb
@@ -27,12 +27,12 @@ RSpec.describe Ci::CreatePipelineService do
let(:loggable_data) do
{
- 'caller' => 'Ci::CreatePipelineService',
- 'source' => 'push',
+ 'pipeline_creation_caller' => 'Ci::CreatePipelineService',
+ 'pipeline_source' => 'push',
'pipeline_id' => a_kind_of(Numeric),
- 'persisted' => true,
+ 'pipeline_persisted' => true,
'project_id' => project.id,
- 'duration_s' => a_kind_of(Numeric),
+ 'pipeline_creation_service_duration_s' => a_kind_of(Numeric),
'pipeline_creation_duration_s' => counters,
'pipeline_size_count' => counters,
'pipeline_step_gitlab_ci_pipeline_chain_seed_duration_s' => counters
@@ -79,12 +79,12 @@ RSpec.describe Ci::CreatePipelineService do
context 'when the pipeline is not persisted' do
let(:loggable_data) do
{
- 'caller' => 'Ci::CreatePipelineService',
- 'source' => 'push',
+ 'pipeline_creation_caller' => 'Ci::CreatePipelineService',
+ 'pipeline_source' => 'push',
'pipeline_id' => nil,
- 'persisted' => false,
+ 'pipeline_persisted' => false,
'project_id' => project.id,
- 'duration_s' => a_kind_of(Numeric),
+ 'pipeline_creation_service_duration_s' => a_kind_of(Numeric),
'pipeline_step_gitlab_ci_pipeline_chain_seed_duration_s' => counters
}
end