debian-mirror-gitlab/config/initializers/fill_shards.rb
2019-09-04 21:01:54 +05:30

6 lines
271 B
Ruby

# The `table_exists?` check is needed because during our migration rollback testing,
# `Shard.connected?` could be cached and return true even though the table doesn't exist
if Shard.connected? && Shard.table_exists? && !Gitlab::Database.read_only?
Shard.populate!
end