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
In production environment the following error occurs.
% RAILS_ENV=production rails s=> Booting Puma=> Rails 7.2.0 application starting in production => Run `bin/rails server --help` for more startup optionsExiting/usr/local/rvm/gems/default/gems/carrierwave-3.0.7/lib/carrierwave/uploader/configuration.rb:163:in `fog_provider=': private method `warn' called for class ActiveSupport::Deprecation (NoMethodError) from /workspaces/yoka-server/api_root/config/initializers/carrierwave.rb:5:in `block in <main>' from /usr/local/rvm/gems/default/gems/carrierwave-3.0.7/lib/carrierwave/uploader/configuration.rb:177:in `configure' from /usr/local/rvm/gems/default/gems/carrierwave-3.0.7/lib/carrierwave.rb:14:in `configure' from /workspaces/yoka-server/api_root/config/initializers/carrierwave.rb:3:in `<main>'(snip)
The text was updated successfully, but these errors were encountered:
In my case CarrierWave.deprecator.warn has been called due to having a (deprecated) extension_whitelist method in my Uploader. Renaming the method to extension_allowlist fixed the issue for me.
carrierwave version: 3.0.7
In production environment the following error occurs.
The text was updated successfully, but these errors were encountered: