From 7f554564544f03deca03753c9c3f3437bf79f38f Mon Sep 17 00:00:00 2001 From: Emi Matchu Date: Fri, 20 Sep 2024 13:14:00 -0700 Subject: [PATCH] Explicitly disable the unused ActionCable Rails feature Just for consistency with the other features we're not using, we turn off ActionCable when loading the app. I just removed `config/cable.yml`, so I figure, let's not load a feature without the config file it expects! (even though that didn't seem to bother it) --- config/application.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/application.rb b/config/application.rb index d0861c0b..7c3340f6 100644 --- a/config/application.rb +++ b/config/application.rb @@ -9,11 +9,11 @@ require "rails" # Disabled: # - active_storage/engine # - active_job/railtie +# - action_cable/engine # - action_mailbox/engine # - action_text/engine %w( active_record/railtie - action_cable/engine action_controller/railtie action_view/railtie action_mailer/railtie