pg.rb:56中的分段错误
版本: 导轨:5.2.0, 红宝石:2.4.4, pg宝石:0.20.0
升级到Mac OS mojave后,我的本地主机服务器遇到了问题。服务器本身启动正常,但是当尝试通过Web浏览器访问它时,它崩溃了,并且出现了上面显示的分段错误。
答案 0 :(得分:1)
WEB_CONCURRENCY=0
而且您不需要在config / puma.rb
答案 1 :(得分:0)
As this issue is only occuring in the development environment, I made it conditional. This solution in puma.rb
works for me until the bug gets fixed.
workers ENV.fetch("WEB_CONCURRENCY") { 2 } unless Rails.env.development?
答案 2 :(得分:0)
我有一个类似的问题,其中我的测试环境经常在Ruby 2.6.3中由于Segmnentation Fault lib / pg.rb第56行崩溃。
对我有用的是将pumb.rb设置为在测试环境中具有零工作人员:
# config/puma.rb
(ENV.fetch("RAILS_ENV") == 'test') ? (workers 0) : (workers ENV.fetch("WEB_CONCURRENCY") { 2 })