We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To reproduce:
Organization.current = Organization.find(1) # => #<Organization:0x000000011c9475d8 id: 1, ...> # PropertyCache is dependent_on Organization PropertyCache.current #=> #<PropertyCache:0x000000010b2b3a48> # Directly update the registry using [], set, with_merged_registry, or merge! RailsMultitenant[:organization_id] = 2 Organization.current_id # => 2 # RailsMultitenant[:organization_obj] still points to old organization Organization.current # => #<Organization:0x000000011c9475d8 id: 1, ...> # Context objects dependent on organization aren't cleared out PropertyCache.current #=> #<PropertyCache:0x000000010b2b3a48>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To reproduce:
The text was updated successfully, but these errors were encountered: