SOLUTION OF DEADLOCK ERROR
When we run cap production deploy command then we are getting problem :-
Unfortunately, an unexpected error occurred, and Bundler cannot continue.fatal: No live threads left. Deadlock?
For solving that problem , change the version of Bundler
root@13-14-146-203:-$ gem uninstall bundler --version ourversion
and Install new bundler version :-
root@13-14-146-203:-$ gem install bundler --version 1.10.6
Now, it will solve
cap production deploy
Comments