动作电缆在本地订阅,但不在heroku上订阅

问题描述 投票:9回答:4

我一直在尝试在网上找到的所有东西,但没有任何工作。希望一些新鲜的眼睛会看到这个问题。这是我第一次使用ActionCable,一切都在本地很好用,但是在推送到heroku时。我的日志没有显示任何actioncable订阅,如我的开发服务器:

[ActionCable] [[email protected]] MsgsChannel is streaming from msg_channel_34

并且在发送消息时,我确实看到[ActionCable] Broadcasting to msg_channel_34:但它们没有附加,我猜这意味着received方法没有被访问/调用?

我注意到heroku的日志,它说Listening on tcp://0.0.0.0:5000在哪里作为开发人员在localhost:3000收听。我应该以某种方式指向我的heroku app吗?

以下是相关的配置文件:

Procfile:

web: bundle exec puma -p 5000  ./config.ru  
actioncable: bundle exec puma -p 28080  cable/config.ru  
redis: redis-server  

***感谢下面的评论,我也在努力。仍然没有工作,但我可以看到它正在收听的端口正在改变,让我相信它与配置有关? :

web: bundle exec puma -p $PORT  ./config.ru  
actioncable: bundle exec puma -p $PORT  cable/config.ru  
redis: redis-server  

/cable/config.如

require ::File.expand_path('../../config/environment',  __FILE__)  
Rails.application.eager_load!

ActionCable.server.config.allowed_request_origins = ["http://localhost:3000"]  
run ActionCable.server 

配置/环境/ development.rb

config.action_cable.allowed_request_origins = ['localhost:3000']
config.action_cable.url = "ws://localhost:3000/cable"

配置/环境/ production.rb

config.web_socket_server_url = "wss://app-name.herokuapp.com/cable" 
  config.action_cable.allowed_request_origins = ['https://app-name.herokuapp.com', 'http://app-name.herokuapp.com']

config / cable.yml

local: &local  
  adapter: async
  :url: redis://localhost:6379
  :host: localhost
  :port: 6379
  :timeout: 1
  :inline: true
development: *local  
test: *local


production:
  :url: redis:<%= ENV["REDISTOGO_URL"] %>
  adapter: redis

<%= ENV["REDISTOGO_URL"] %>已设置,通过运行heroku配置确认

的routes.rb

mount ActionCable.server => '/cable'

为什么这个在dev上运行,而不是在heroku上运行?我已经读了几个小时,但无法理解。谢谢!!

更新:heroku日志:

2017-01-25T20:32:57.329656+00:00 heroku[web.1]: Starting process with command `bundle exec puma -p 5000  ./config.ru`
2017-01-25T20:32:59.600554+00:00 app[web.1]: Puma starting in single mode...
2017-01-25T20:32:59.600574+00:00 app[web.1]: * Version 3.6.2 (ruby 2.3.1-p112), codename: Sleepy Sunday Serenity
2017-01-25T20:32:59.600575+00:00 app[web.1]: * Min threads: 0, max threads: 16
2017-01-25T20:32:59.600577+00:00 app[web.1]: * Environment: production
2017-01-25T20:33:02.375128+00:00 app[web.1]: profile controller
2017-01-25T20:33:02.588653+00:00 app[web.1]: Use Ctrl-C to stop
2017-01-25T20:33:02.588446+00:00 app[web.1]: * Listening on tcp://0.0.0.0:5000
2017-01-25T20:33:17.681469+00:00 heroku[web.1]: Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch
2017-01-25T20:33:17.681469+00:00 heroku[web.1]: Stopping process with SIGKILL
2017-01-25T20:33:17.862118+00:00 heroku[web.1]: Process exited with status 137
2017-01-25T20:33:57.501746+00:00 heroku[web.1]: Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch
2017-01-25T20:33:57.501908+00:00 heroku[web.1]: Stopping process with SIGKILL
2017-01-25T20:33:57.630071+00:00 heroku[web.1]: Process exited with status 137
2017-01-25T20:33:57.642753+00:00 heroku[web.1]: State changed from starting to crashed
ruby-on-rails heroku redis puma actioncable
4个回答
9
投票

问题是我的主机是heroku应用程序,但请求来自自定义域。

要解决:

heroku config:set RAILS_HOST "http://www.example.com"

然后在production.rb:

config.action_cable.url = "wss://#{ENV['RAILS_HOST']}/cable"


2
投票

你的procfile建议你在端口28080上使用cable / cable.ru运行puma。另外 - file cable / config.ru不应该包含这一行:

ActionCable.server.config.allowed_request_origins = ["http://localhost:3000"]  

您已在config / environment / * .rb中配置了此项


1
投票

您的应用名称字面上是app-name吗?我怀疑不是。这些价值的可能性非常大......

config.web_socket_server_url = "wss://app-name.herokuapp.com/cable" 
config.action_cable.allowed_request_origins = ['https://app-name.herokuapp.com', 'http://app-name.herokuapp.com']

需要更新以使用您要连接的实际面向公众的URL。


0
投票

我有同样的问题,并找到了我需要here: redis gem 4+ incompatibility "Specified 'redis' for Action Cable pubsub adapter, but the gem is not loaded"的答案。一旦我将我的redis降级到3.1.0,就完美地工作了。

© www.soinside.com 2019 - 2024. All rights reserved.