I was running into a problem where logging in with a Spree user created after installing this gem was taking around 120 seconds to login in development. I think this was because the devise stretches was set to 20. See this thread for more context https://github.com/heartcombo/devise/issues/1184#issuecomment-1492985.
Perhaps when this initializer was set up originally a different encryption strategy was being used and the higher stretches wasn't as slow.
To get around the issue while using this gem, just override the stretches config in a config/devise.rb initializer in the host app.
I was running into a problem where logging in with a Spree user created after installing this gem was taking around 120 seconds to login in development. I think this was because the devise stretches was set to 20. See this thread for more context https://github.com/heartcombo/devise/issues/1184#issuecomment-1492985.
Perhaps when this initializer was set up originally a different encryption strategy was being used and the higher stretches wasn't as slow.
To get around the issue while using this gem, just override the stretches config in a
config/devise.rb
initializer in the host app.