##// END OF EJS Templates
fixed error propagation when using git/mercurial requests
marcink -
r898:9c4851dc beta
parent child Browse files
Show More
@@ -103,7 +103,8 class SimpleGit(object):
103 proxy_key = 'HTTP_X_REAL_IP'
103 proxy_key = 'HTTP_X_REAL_IP'
104 def_key = 'REMOTE_ADDR'
104 def_key = 'REMOTE_ADDR'
105 self.ipaddr = environ.get(proxy_key, environ.get(def_key, '0.0.0.0'))
105 self.ipaddr = environ.get(proxy_key, environ.get(def_key, '0.0.0.0'))
106
106 # skip passing error to error controller
107 environ['pylons.status_code_redirect'] = True
107 #===================================================================
108 #===================================================================
108 # AUTHENTICATE THIS GIT REQUEST
109 # AUTHENTICATE THIS GIT REQUEST
109 #===================================================================
110 #===================================================================
@@ -69,7 +69,8 class SimpleHg(object):
69 proxy_key = 'HTTP_X_REAL_IP'
69 proxy_key = 'HTTP_X_REAL_IP'
70 def_key = 'REMOTE_ADDR'
70 def_key = 'REMOTE_ADDR'
71 self.ipaddr = environ.get(proxy_key, environ.get(def_key, '0.0.0.0'))
71 self.ipaddr = environ.get(proxy_key, environ.get(def_key, '0.0.0.0'))
72
72 # skip passing error to error controller
73 environ['pylons.status_code_redirect'] = True
73 #===================================================================
74 #===================================================================
74 # AUTHENTICATE THIS MERCURIAL REQUEST
75 # AUTHENTICATE THIS MERCURIAL REQUEST
75 #===================================================================
76 #===================================================================
General Comments 0
You need to be logged in to leave comments. Login now