Scott Allen writes: > Been setting up an new instance to test upgrades and such with. All has > worked fine aside from the following errors that we see when pushing. > > $ git push origin master > Counting objects: 5, done. > Delta compression using up to 16 threads. > Compressing objects: 100% (2/2), done. > Writing objects: 100% (3/3), 346 bytes, done. > Total 3 (delta 0), reused 0 (delta 0) > *remote: connect failed: Connection refused - connect(2) will retry in 5* > *remote: connect failed: Connection refused - connect(2) will retry in 5*
Scott, Looks like your messaging server isn't running. If you're running with the Redis/Resque combination (which you should), you should ensure that: - gitorious.yml contains this: "messaging_adapter: resque" - redis is installed and running on your server (yum install redis && service redis start && chkconfig redis on) > It will continue to retry until we break out of it. However, the push does > succeed, as you can tell from a subsequent push: That's probably the case, yes. The thing that will be missing is any entries in the push log (plus other data in the database, depending on what you pushed). Cheers, - Marius -- -- To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] --- You received this message because you are subscribed to the Google Groups "Gitorious" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
