Skip to content

Instantly share code, notes, and snippets.

@crcastle
Created October 18, 2011 15:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crcastle/1295761 to your computer and use it in GitHub Desktop.
Save crcastle/1295761 to your computer and use it in GitHub Desktop.
What to do if a BigTuna build job hangs
# log on to big tuna box
# become tuna user
sudo su tuna
# stop the delayed_job process
cd /home/tuna/bigtuna
RAILS_ENV=production ./script/delayed_job stop
# clear the job queue
RAILS_ENV=production bundle exec rake jobs:clear
# start delayed_job back up
RAILS_ENV=production ./script/delayed_job start
# now you can delete any hung build jobs in the big tuna web gui
# then start a new build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment