我正在尝试向pubnub频道发布消息,但它不在服务器上发布。然而它在本地机器上工作得非常好。知道我做错了吗?
class Message < ActiveRecord::Base
after_create :send_message_to_driver
def send_message_to_ABC
$pubnub.publish(
channel: "chat_ABC",
message: message
) do |env|
puts env.parsed_response
end
end
end
$ pubnub正在为app全局初始化。
答案 0 :(得分:3)
好的一些研究和调试我能够解决这个问题。出现此问题的原因是,默认情况下,Ruby操作是异步的。因此脚本在发布完成之前终止。幸运的是,我们为这个pubnub的发布方法提供了 http_sync 选项。将其设置为true可确保在发布完成之前不终止该流。所以新代码是
$pubnub.publish(
http_sync: true,
channel: "chat_ABC",
message: message
) do |env|
puts env.parsed_response
end