You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're seeing an issue that seems superficially similar to #22 -- in a nutshell, binstubs are generated with paths to the Gemfile for a specific Capistrano release, and once that release is reaped by Capistrano, the binstubs used by the current version of the application break.
Background
The relevant part of our Capistrano configuration:
Since binstubs aren't automatically regenerated on every deploy, but we only retain a certain number of releases, so at some point, the release referenced in the binstubs is removed, and they all break.
Our current workaround is to explicitly set BUNDLE_GEMFILE to /app/current/Gemfile, but this causes other unrelated issues (e.g. new gems aren't visible to the application until after the symlink has been changed).
I think we're largely following the default approach for capistrano-bundler as described in the README, and I think this is the default behaviour of bundler.
#45 suggests that the right way to avoid this is by checking binstubs into the application repository. That would certainly work, since by definition the relative path of each binstubs and the Gemfile won't change.
So I suppose my question is: shouldn't everyone who is generating binstubs on deployment be seeing this issue? Maybe nobody else is either reaping old releases or generating binstubs? If this is the default behaviour, I wonder if the implementation should actually explicitly not support generating binstubs, and the documentation should propose the approach from #45?
Hopefully that's all clear; let me know if there's any other details that I can provide which might help
The text was updated successfully, but these errors were encountered:
It seems to me that having Capistrano generate binstubs is fundamentally problematic. There is the issue you mention of the binstubs pointing to reaped releases. But even if that were fixed and the binstubs always pointed to the "current" Gemfile, that won't work either because during a deploy you are generating the binstubs before you update the current symlink. So there would be a period of time during deploys where the binstubs are pointing to the wrong Gemfile.
I always generate binstubs locally and commit them to git, as discussed in #45.
So I suppose my question is: shouldn't everyone who is generating binstubs on deployment be seeing this issue? Maybe nobody else is either reaping old releases or generating binstubs? If this is the default behaviour, I wonder if the implementation should actually explicitly not support generating binstubs, and the documentation should propose the approach from #45?
I would be in favor of removing mention of the bundle_binstubs config from the README and recommending the approach from #45. We should still keep the feature around, to avoid breaking existing deploys. If you would like to open a PR for the README changes I am happy to merge it.
We're seeing an issue that seems superficially similar to #22 -- in a nutshell, binstubs are generated with paths to the Gemfile for a specific Capistrano release, and once that release is reaped by Capistrano, the binstubs used by the current version of the application break.
Background
The relevant part of our Capistrano configuration:
On our servers, we have
/app/shared/binstubs
in thePATH
, and this is the bundler config, symlinked into every release:We're using Bundler 1.17.3:
And these Capistrano versions:
(I realise
capistrano-bundler
is not at the latest release, but the changes between 1.3.0 and 1.5.0 don't seem like they would impact this at all)The issue
When deploying,
bundle install
works as you'd expect, installing the gems and binstubs into the shared directory:However, within the generated binstubs, they all include a reference to the specific release directory:
Since binstubs aren't automatically regenerated on every deploy, but we only retain a certain number of releases, so at some point, the release referenced in the binstubs is removed, and they all break.
Our current workaround is to explicitly set
BUNDLE_GEMFILE
to/app/current/Gemfile
, but this causes other unrelated issues (e.g. new gems aren't visible to the application until after the symlink has been changed).I think we're largely following the default approach for
capistrano-bundler
as described in the README, and I think this is the default behaviour of bundler.#45 suggests that the right way to avoid this is by checking binstubs into the application repository. That would certainly work, since by definition the relative path of each binstubs and the
Gemfile
won't change.So I suppose my question is: shouldn't everyone who is generating binstubs on deployment be seeing this issue? Maybe nobody else is either reaping old releases or generating binstubs? If this is the default behaviour, I wonder if the implementation should actually explicitly not support generating binstubs, and the documentation should propose the approach from #45?
Hopefully that's all clear; let me know if there's any other details that I can provide which might help
The text was updated successfully, but these errors were encountered: