Sha256: 134ed607a4f97afa6e97e27c8fc56b397dfd60f3a3abd86124743a8f18733585
Contents?: true
Size: 306 Bytes
Versions: 11
Compression:
Stored size: 306 Bytes
Contents
# frozen_string_literal: true module RailsMultitenant module Middleware class IsolatedContextRegistry def initialize(app) @app = app end def call(env) GlobalContextRegistry.with_isolated_registry do @app.call(env) end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems