Remove the geo_fdw RSpec tag

Since Gitlab 13.2, Geo don't rely on FDW
parent aed6f7ea
...@@ -24,16 +24,4 @@ RSpec.configure do |config| ...@@ -24,16 +24,4 @@ RSpec.configure do |config|
config.around(:each, :geo_tracking_db) do |example| config.around(:each, :geo_tracking_db) do |example|
example.run if Gitlab::Geo.geo_database_configured? example.run if Gitlab::Geo.geo_database_configured?
end end
config.around(:each, :geo_fdw) do |example|
if Gitlab::Geo::Fdw.enabled? && Gitlab::Geo.geo_database_configured?
# Disable transactions because a foreign table can't see changes
# inside a transaction of a different connection.
self.class.use_transactional_tests = false
example.run
delete_from_all_tables!(except: deletion_except_tables)
end
end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment