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
I think that Xeroizer has forgotten to require 'active_support/isolated_execution_state' somewhere, which presumably gets done automatically in Rails. This is currently what happens when you try to require xeroizer outside of Rails:
It is a change in ActiveSupport 7 (I've seen it crop up in a couple different places already too), but apparently is by design per rails/rails#44450. The suggested fix is to add require "active_support" (which sets up a bunch of autoloads) to somewhere in Xeroizer's loading sequence.
I think that Xeroizer has forgotten to
require 'active_support/isolated_execution_state'
somewhere, which presumably gets done automatically in Rails. This is currently what happens when you try to require xeroizer outside of Rails:Obviously the workaround is just to
require 'active_support/isolated_execution_state'
beforerequire 'xeroizer'
.The text was updated successfully, but these errors were encountered: