Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
4cdf56c201fa
Commit
e6fb944d
authored
May 03, 2018
by
Dylan Griffith
Browse files
Dont remove duplicates in Runner.owned_or_shared since its not necessary
parent
b698e98adbbc
Changes
1
Hide whitespace changes
Inline
Side-by-side
app/models/ci/runner.rb
View file @
4cdf56c2
...
...
@@ -40,7 +40,10 @@ class Runner < ActiveRecord::Base
}
scope
:owned_or_shared
,
->
(
project_id
)
do
union
=
Gitlab
::
SQL
::
Union
.
new
([
belonging_to_project
(
project_id
),
belonging_to_parent_group_of_project
(
project_id
),
shared
])
union
=
Gitlab
::
SQL
::
Union
.
new
(
[
belonging_to_project
(
project_id
),
belonging_to_parent_group_of_project
(
project_id
),
shared
],
remove_duplicates:
false
)
from
(
"(
#{
union
.
to_sql
}
) ci_runners"
)
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