daveomcd
daveomcd

Reputation: 6565

How can I temporarily disable ActionCable subscriptions in Rails?

I'm trying to debug some odd behavior with my application and was trying to see if "disabling" action cable streams/subscriptions in development would correct the behavior - but how can I stop this without ripping out large amounts of code?

I'm currently using Rails 5.1.4

Upvotes: 3

Views: 2964

Answers (1)

Alex Kojin
Alex Kojin

Reputation: 5214

Remove //= require cable from application.js

Upvotes: 2

Related Questions