You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! Since it looks like this gem is not dependent on rails gem it gets loaded before the rails and overrides the default #stringify_keys method from rails which is causing very weird and almost untraceable issues especially in test environment!
Hello! Since it looks like this gem is not dependent on
rails
gem it gets loaded before the rails and overrides the default #stringify_keys method fromrails
which is causing very weird and almost untraceable issues especially in test environment!Can we please add that dependency and ensure that it's not just overriding rails default behaviour or remove this monkey patch and switch to using
#transform_keys(&:to_s) and #trasnform_values
in one place where it's being used in the SDK. Here: https://github.com/livekit/server-sdk-ruby/blob/main/lib/livekit/grants.rb#L91Using refinement should also limit the scope of the change of
#stringify_keys
The text was updated successfully, but these errors were encountered: