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.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/gitlab/sourcegraph.rb b/lib/gitlab/sourcegraph.rb
index 7ef6ab32bd4..892c4468107 100644
--- a/lib/gitlab/sourcegraph.rb
+++ b/lib/gitlab/sourcegraph.rb
@@ -8,13 +8,14 @@ module Gitlab
end
def feature_available?
- # The sourcegraph_bundle feature could be conditionally applied, so check if `!off?`
- !feature.off?
+ # The sourcegraph feature could be conditionally applied, so check if `!off?`
+ # We also can't just check !off? because the ActiveRecord might not exist yet
+ self.feature_enabled? || !feature.off?
end
def feature_enabled?(actor = nil)
# Some CI jobs grep for Feature.enabled? in our codebase, so it is important this reference stays around.
- Feature.enabled?(:sourcegraph, actor)
+ Feature.enabled?(:sourcegraph, actor, default_enabled: :yaml)
end
private