Skip to content

8 - Set disabled status in set_tenant #9

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/rls_rails/helpers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def self.set_tenant tenant
clear_query_cache
debug_print "Accessing database as #{tenant.name}\n"
execute_sql "SET SESSION rls.disable = FALSE; SET SESSION rls.tenant_id = #{tenant.id};"
@rls_status.merge!(tenant_id: tenant.id.to_s)
@rls_status.merge!(tenant_id: tenant.id.to_s, disabled: 'false')
end

def self.set_user user
Expand Down Expand Up @@ -171,4 +171,4 @@ def self.execute_sql query
def self.debug_print s
print s if Railtie.config.rls_rails.verbose
end
end
end