Bundler在运行`bundle install`

时间:2016-12-08 21:52:42

标签: ruby bundler

首先,一些背景信息,我试图在远程bluehost服务器上运行bundle install。我认为问题在于捆绑商所做的线程数量超过了我对服务器所允许的数量,尽管我并不确定。我在这里运行bundle install --verbose

$ bundle install --verbose
Running `bundle install --verbose` with bundler 1.13.6
Found changes from the lockfile, re-resolving dependencies because the list of sources changed, the dependencies in your gemfile changed, you added a new platform to your gemfile
HTTP GET https://index.rubygems.org/versions
HTTP 304 Not Modified https://index.rubygems.org/versions
Fetching gem metadata from https://rubygems.org/
Looking up gems ["rails", "sqlite3", "sass-rails", "uglifier", "coffee-rails", "jquery-rails", "turbolinks", "jbuilder", "sdoc", "bcrypt", "byebug", "web-console", "spring"]
Retrying fetcher due to error (2/4): ThreadError can't create Thread: Resource temporarily unavailable
Looking up gems ["rails", "sqlite3", "sass-rails", "uglifier", "coffee-rails", "jquery-rails", "turbolinks", "jbuilder", "sdoc", "bcrypt", "byebug", "web-console", "spring"]
Retrying fetcher due to error (3/4): ThreadError can't create Thread: Resource temporarily unavailable
Looking up gems ["rails", "sqlite3", "sass-rails", "uglifier", "coffee-rails", "jquery-rails", "turbolinks", "jbuilder", "sdoc", "bcrypt", "byebug", "web-console", "spring"]
Retrying fetcher due to error (4/4): ThreadError can't create Thread: Resource temporarily unavailable
Looking up gems ["rails", "sqlite3", "sass-rails", "uglifier", "coffee-rails", "jquery-rails", "turbolinks", "jbuilder", "sdoc", "bcrypt", "byebug", "web-console", "spring"]

如果问题是线程太多,我如何限制捆绑器中的数量?

编辑:尝试运行bundle install --jobs 1,但它也犯了同样的错误,这意味着我原来的预感是错误的。

0 个答案:

没有答案