summaryrefslogtreecommitdiff
path: root/app/models/concerns/sha_attribute.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/concerns/sha_attribute.rb')
-rw-r--r--app/models/concerns/sha_attribute.rb6
1 files changed, 1 insertions, 5 deletions
diff --git a/app/models/concerns/sha_attribute.rb b/app/models/concerns/sha_attribute.rb
index c5826f58966..c807dcbf418 100644
--- a/app/models/concerns/sha_attribute.rb
+++ b/app/models/concerns/sha_attribute.rb
@@ -39,11 +39,7 @@ module ShaAttribute
end
def database_exists?
- ApplicationRecord.connection
-
- true
- rescue
- false
+ Gitlab::Database.exists?
end
end
end