activate ActionCable messaging instead of Faye

This commit is contained in:
2026-05-17 11:44:53 -05:00
parent 12836dd14b
commit 4bee13aae7
+2 -1
View File
@@ -11,7 +11,8 @@ end
# Broadcaster: swap Faye ↔ ActionCable
# Mozo.broadcaster = Mozo::Broadcaster::Faye.new # current (HTTP POST to Faye)
# Mozo.broadcaster = Mozo::Broadcaster::ActionCable.new # new (in-process async)
Mozo.broadcaster = Mozo::Broadcaster::Faye.new
#Mozo.broadcaster = Mozo::Broadcaster::Faye.new
Mozo.broadcaster = Mozo::Broadcaster::ActionCable.new # new (in-process async)
# Counter: swap DrbCounter ↔ Redis
# Mozo::Counter.connection = Mozo::DrbCounter.object # current (DRb in-memory)