Fix condition

This commit is contained in:
Shinya Maeda 2017-06-07 22:24:11 +09:00
parent 431d7972b6
commit 465e5de510
2 changed files with 7 additions and 4 deletions

View file

@ -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)

View file

@ -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)