Fix condition
This commit is contained in:
parent
431d7972b6
commit
465e5de510
2 changed files with 7 additions and 4 deletions
|
@ -208,12 +208,14 @@ module Ci
|
|||
def matching?(patterns, ref, tag, source)
|
||||
patterns.any? do |pattern|
|
||||
pattern, path = pattern.split('@', 2)
|
||||
unmatches_path?(path) && matches_pattern?(pattern, ref, tag, source)
|
||||
matches_path?(path) && matches_pattern?(pattern, ref, tag, source)
|
||||
end
|
||||
end
|
||||
|
||||
def unmatches_path?(path)
|
||||
path && path != self.path
|
||||
def matches_path?(path)
|
||||
return true unless path
|
||||
|
||||
path == self.path
|
||||
end
|
||||
|
||||
def matches_pattern?(pattern, ref, tag, source)
|
||||
|
|
|
@ -49,7 +49,8 @@ module Gitlab
|
|||
end
|
||||
|
||||
def self.enabled?
|
||||
Gitlab.config.gitaly.enabled
|
||||
# Gitlab.config.gitaly.enabled
|
||||
false
|
||||
end
|
||||
|
||||
def self.feature_enabled?(feature, status: MigrationStatus::OPT_IN)
|
||||
|
|
Loading…
Reference in a new issue