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:
Diffstat (limited to 'lib/gitlab/sourcegraph.rb')
-rw-r--r--lib/gitlab/sourcegraph.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/gitlab/sourcegraph.rb b/lib/gitlab/sourcegraph.rb
index 231d5aea129..7ef6ab32bd4 100644
--- a/lib/gitlab/sourcegraph.rb
+++ b/lib/gitlab/sourcegraph.rb
@@ -13,7 +13,8 @@ module Gitlab
end
def feature_enabled?(actor = nil)
- feature.enabled?(actor)
+ # Some CI jobs grep for Feature.enabled? in our codebase, so it is important this reference stays around.
+ Feature.enabled?(:sourcegraph, actor)
end
private