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
{{ message }}
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.
Sometimes the RubyGem service returns a lot of 503s (happened to me today for about 3 hours on different gems) and the deploy:setup phase wipes the whole directory if it fails, making you start from scratch.
I propose a change that allows commands to be rerun if desired. I wrote up a patch but had 2 errors in testing it.
when I do vagrant up I get
The box you attempted to add doesn't match the provider you specified.
Provider expected: virtualbox
Provider of box: vmware_fusion
rspec seems to have 1 error, but I think it's just a mocking issue. Where does mocka actually store it's mocks so I can modify it?
I think being able to retry gem installation will be valuable, particularly given how flaky github and rubygems seem to be. Luckily though, we can add it without any (real) code. The latest bundler (pre-release) adds a --retry flag, so once that's been released, I'll add that to the recipe. (see here: rubygems/bundler#2601)
As for the vagrant problem, I'm amazed you went to the effort of running the tests - well done! As you've probably figures out though, I wrote them using the vmware fusion adapter for vagrant, not bog-standard vagrant. I'll look into getting them running on both.
Sometimes the RubyGem service returns a lot of 503s (happened to me today for about 3 hours on different gems) and the deploy:setup phase wipes the whole directory if it fails, making you start from scratch.
I propose a change that allows commands to be rerun if desired. I wrote up a patch but had 2 errors in testing it.
The box you attempted to add doesn't match the provider you specified.
Provider expected: virtualbox
Provider of box: vmware_fusion
My commit can be found here: tkwwarchive@e547f84
Thank you,
James Flowers
The text was updated successfully, but these errors were encountered: