rename qwaiter to mozo

This commit is contained in:
2025-09-20 17:35:58 -05:00
parent 7212d9041e
commit 0e051b1f93
99 changed files with 189 additions and 168 deletions
+5 -5
View File
@@ -1,15 +1,15 @@
if Rails.env.development?
Qwaiter.event_host = "http://localhost:9296/faye"
Mozo.event_host = "http://localhost:9296/faye"
else
Qwaiter.event_host = "https://events.mozo.bar/faye"
Mozo.event_host = "https://events.mozo.bar/faye"
end
Qwaiter.broadcaster = Qwaiter::Broadcaster::Faye.new
Mozo.broadcaster = Mozo::Broadcaster::Faye.new
# use the connection from couchbase-structures/documents
# will be overwritten in the specs since flushing the real
# thing is difficult
# Qwaiter::Counter.connection = $cb unless Rails.env.test?
# Mozo::Counter.connection = $cb unless Rails.env.test?
# Use the Drb counter
Qwaiter::Counter.connection = Qwaiter::DrbCounter.object unless Rails.env.test?
Mozo::Counter.connection = Mozo::DrbCounter.object unless Rails.env.test?