Skip to content

Commit f10e528

Browse files
committed
fix: Comment out active_storage config in all environments
Missed active_storage configuration in development.rb and production.rb which caused CI failures when the application tried to boot. Changes: - Commented out config.active_storage.service in development.rb - Commented out config.active_storage.service in production.rb This completes the removal of ActiveStorage dependency.
1 parent 74dc59c commit f10e528

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config/environments/development.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
end
3535

3636
# Store uploaded files on the local file system (see config/storage.yml for options).
37-
config.active_storage.service = :local
37+
# config.active_storage.service = :local # Commented out - not using ActiveStorage
3838

3939
# Don't care if the mailer can't send.
4040
config.action_mailer.raise_delivery_errors = false

config/environments/production.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
# config.action_dispatch.x_sendfile_header = "X-Accel-Redirect" # for NGINX
3838

3939
# Store uploaded files on the local file system (see config/storage.yml for options).
40-
config.active_storage.service = :local
40+
# config.active_storage.service = :local # Commented out - not using ActiveStorage
4141

4242
# Mount Action Cable outside main process or domain.
4343
# config.action_cable.mount_path = nil

0 commit comments

Comments
 (0)