From 5ca2c7caf3a902de15aa3a46e3370d7c8fc6fbcd Mon Sep 17 00:00:00 2001 From: Jon Ciesla Date: Fri, 28 Sep 2012 16:38:29 -0500 Subject: [PATCH] Switch to port 80. --- scripts/process-git-requests/process-git-requests | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/process-git-requests/process-git-requests b/scripts/process-git-requests/process-git-requests index 3165599..eead11f 100755 --- a/scripts/process-git-requests/process-git-requests +++ b/scripts/process-git-requests/process-git-requests @@ -768,7 +768,7 @@ if __name__ == '__main__': print "Making sure " + options.pkghost + " is available..." try: - sshsock = socket.create_connection((options.pkghost, 22)) + sshsock = socket.create_connection((options.pkghost, 80)) sshsock.close() except Exception, e: print options.pkghost + " unavailable."