Performance improvement to the patch
This commit is contained in:
parent
09ebef6214
commit
c794d645dd
1 changed files with 2 additions and 3 deletions
5
debian/patches/fix-8-to-10-migration.patch
vendored
5
debian/patches/fix-8-to-10-migration.patch
vendored
|
@ -3,7 +3,7 @@ Required to support updation from 8 to 10
|
|||
Bug, upstream: https://gitlab.com/gitlab-org/gitlab-ce/issues/48040
|
||||
|
||||
diff --git a/lib/gitlab/gitaly_client.rb b/lib/gitlab/gitaly_client.rb
|
||||
index 0abae70c443..e4ff8261120 100644
|
||||
index 0abae70c443..b16efe37fd2 100644
|
||||
--- a/lib/gitlab/gitaly_client.rb
|
||||
+++ b/lib/gitlab/gitaly_client.rb
|
||||
@@ -216,6 +216,12 @@ module Gitlab
|
||||
|
@ -12,11 +12,10 @@ index 0abae70c443..e4ff8261120 100644
|
|||
|
||||
+ # If the features table does not exist, don't check the feature, just return
|
||||
+ # the default
|
||||
+ unless Feature::FlipperFeature.table_exists?
|
||||
+ unless Gitlab::Database.cached_table_exists?(Feature::FlipperFeature.table_name)
|
||||
+ return false
|
||||
+ end
|
||||
+
|
||||
feature = Feature.get("gitaly_#{feature_name}")
|
||||
|
||||
# If the feature has been set, always evaluate
|
||||
|
||||
|
|
Loading…
Reference in a new issue