Capistrano 部署因 Capistrano-Harrow gem 的新请求而中断?
Capistrano deployment broken by new request for Capistrano-Harrow gem?
我以为我的 capist运行o 版本被锁定到 3.4.0,但它似乎更新到 3.5。我尝试回到 3.4,但是当我尝试将我的项目部署到服务器时,我不断收到以下消息。
DEBUG [72bb6fc3] An error occurred while installing capistrano-harrow (0.3.2), and Bundler cannot
continue.
Make sure that `gem install capistrano-harrow -v '0.3.2'` succeeds before
bundling.
我对capistrano-harrow
不熟悉,但看了一点,似乎不是我需要的东西。我确实添加到我的 gem 文件中,希望能够发送部署,但即使看起来安装正常,部署仍然出错。当我尝试执行 gem install capistrano-harrow -v '0.3.2'
- 我收到以下消息并且没有安装。
ERROR: While executing gem ... (Gem::RemoteFetcher::FetchError)
bad response Not Found 404 (https://rubygems.global.ssl.fastly.net/quick/Marshal.4.8/capistrano-harrow-0.3.2.gemspec.rz)
任何人都知道我可以如何选择退出 harrow 以尝试让我的部署工作,或者更正此问题以继续前进?谢谢!
更新
我运行下面的命令"opt-out",然而,它仍然需要build/installgem我想这是目前真正的问题。
git config harrow.disabled true
capistrano-harrow
的 0.3.2 版本似乎是 Rubygem 的 yanked。您粘贴的 ERROR
消息中有提示:Not Found 404
是从 CDN 收到的。
如果你回到 3.4,gem 应该不会被使用,但如果你是 运行 3.5,请尝试 bundle update capistrano
。
我以为我的 capist运行o 版本被锁定到 3.4.0,但它似乎更新到 3.5。我尝试回到 3.4,但是当我尝试将我的项目部署到服务器时,我不断收到以下消息。
DEBUG [72bb6fc3] An error occurred while installing capistrano-harrow (0.3.2), and Bundler cannot
continue.
Make sure that `gem install capistrano-harrow -v '0.3.2'` succeeds before
bundling.
我对capistrano-harrow
不熟悉,但看了一点,似乎不是我需要的东西。我确实添加到我的 gem 文件中,希望能够发送部署,但即使看起来安装正常,部署仍然出错。当我尝试执行 gem install capistrano-harrow -v '0.3.2'
- 我收到以下消息并且没有安装。
ERROR: While executing gem ... (Gem::RemoteFetcher::FetchError)
bad response Not Found 404 (https://rubygems.global.ssl.fastly.net/quick/Marshal.4.8/capistrano-harrow-0.3.2.gemspec.rz)
任何人都知道我可以如何选择退出 harrow 以尝试让我的部署工作,或者更正此问题以继续前进?谢谢!
更新
我运行下面的命令"opt-out",然而,它仍然需要build/installgem我想这是目前真正的问题。
git config harrow.disabled true
capistrano-harrow
的 0.3.2 版本似乎是 Rubygem 的 yanked。您粘贴的 ERROR
消息中有提示:Not Found 404
是从 CDN 收到的。
如果你回到 3.4,gem 应该不会被使用,但如果你是 运行 3.5,请尝试 bundle update capistrano
。