Skip to content

Instantly share code, notes, and snippets.

@abriening
abriening / connection_fix.rb
Created May 17, 2011 19:26 — forked from defunkt/connection_fix.rb
MySQL server has gone away fix
## https://gist.github.com/977188
#
# If your workers are inactive for a long period of time, they'll
# lose their MySQL connection.
#
# This hack ensures we re-connect whenever a connection is lost.
#
# From: https://gist.github.com/238999
#
# Added retrying to prevent infinite loop.
@abriening
abriening / default.rb
Created May 4, 2011 13:17
Gem Install Chef Recipe
bash "install #{name} gems" do
cwd "/tmp/#{name}"
code <<-end_code
for gem_file in `ls *.gem`
do
gem install ./$gem_file
done
end_code
end