Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
70dcf651
Commit
70dcf651
authored
Jul 22, 2021
by
Rémy Coutable
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'lm-fix-stray-punctuation' into 'master'
Fixes error message See merge request gitlab-org/gitlab!66622
parents
f6c357a8
3225d12e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
lib/gitlab/ci/yaml_processor/dag.rb
lib/gitlab/ci/yaml_processor/dag.rb
+1
-1
spec/lib/gitlab/ci/yaml_processor_spec.rb
spec/lib/gitlab/ci/yaml_processor_spec.rb
+1
-1
No files found.
lib/gitlab/ci/yaml_processor/dag.rb
View file @
70dcf651
...
@@ -23,7 +23,7 @@ module Gitlab
...
@@ -23,7 +23,7 @@ module Gitlab
new
(
nodes
).
tsort
new
(
nodes
).
tsort
rescue
TSort
::
Cyclic
rescue
TSort
::
Cyclic
raise
ValidationError
,
'The pipeline has circular dependencies
.
'
raise
ValidationError
,
'The pipeline has circular dependencies'
rescue
MissingNodeError
rescue
MissingNodeError
end
end
...
...
spec/lib/gitlab/ci/yaml_processor_spec.rb
View file @
70dcf651
...
@@ -2851,7 +2851,7 @@ module Gitlab
...
@@ -2851,7 +2851,7 @@ module Gitlab
YAML
YAML
end
end
it_behaves_like
'returns errors'
,
'The pipeline has circular dependencies
.
'
it_behaves_like
'returns errors'
,
'The pipeline has circular dependencies'
end
end
end
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment