trak3r (owner)

Revisions

gist: 144114 Download_button fork
public
Description:
thread bug in capistrano
Public Clone URL: git://gist.github.com/144114.git
Embed All Files: show embed
Ruby #
1
2
3
4
        # threads = Array(servers).map { |server| establish_connection_to(server, failed_servers) }
        # threads.each { |t| t.join }
        Array(servers).each { |server| safely_establish_connection_to(server, Thread.current, failed_servers) }