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:
authorLin Jen-Shin <godfat@godfat.org>2017-07-05 15:04:53 +0300
committerLin Jen-Shin <godfat@godfat.org>2017-07-05 15:04:53 +0300
commit9f7e5e45df9b7d99b97e40d1c08250925a408875 (patch)
tree2071af9ef6a07d25f3307634a2d3ae190e5eee81 /app/services/ci/create_pipeline_service.rb
parent60b8156a25ae308200a3cacf463eba6ab472afcf (diff)
Add back Pipeline#ci_yaml_file_path due to all the troubles
Diffstat (limited to 'app/services/ci/create_pipeline_service.rb')
-rw-r--r--app/services/ci/create_pipeline_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/ci/create_pipeline_service.rb b/app/services/ci/create_pipeline_service.rb
index b95c26560ae..4f35255fb53 100644
--- a/app/services/ci/create_pipeline_service.rb
+++ b/app/services/ci/create_pipeline_service.rb
@@ -33,7 +33,7 @@ module Ci
unless pipeline.config_processor
unless pipeline.ci_yaml_file
- return error("Missing #{project.ci_config_file_for_pipeline} file")
+ return error("Missing #{pipeline.ci_yaml_file_path} file")
end
return error(pipeline.yaml_errors, save: save_on_errors)
end