Revert "FIX: Cache all flags multisite-safe (#28204)" (#28236)

This reverts commit 2225c03455.
This commit is contained in:
Krzysztof Kotlarek
2024-08-06 10:59:10 +10:00
committed by GitHub
parent fc2259d1c8
commit 2b6c754779
4 changed files with 17 additions and 87 deletions

View File

@@ -1,24 +0,0 @@
# frozen_string_literal: true
RSpec.describe "Custom flags in multisite", type: :multisite do
describe "PostACtionType#all_flags" do
use_redis_snapshotting
it "does not share flag definitions between sites" do
flag_1 = Flag.create!(name: "test flag 1", position: 99, applies_to: ["Post"])
test_multisite_connection("second") do
flag_2 = Flag.create!(name: "test flag 2", position: 99, applies_to: ["Post"])
PostActionType.expire_cache
expect(PostActionType.all_flags.last).to eq(
flag_2.attributes.except("created_at", "updated_at").transform_keys(&:to_sym),
)
end
PostActionType.expire_cache
expect(PostActionType.all_flags.last).to eq(
flag_1.attributes.except("created_at", "updated_at").transform_keys(&:to_sym),
)
end
end
end