We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81b6228 commit c88e383Copy full SHA for c88e383
src/DIRAC/Core/Tornado/Server/private/BaseRequestHandler.py
@@ -739,6 +739,8 @@ def _authzSSL(self):
739
elif balancer:
740
if self.request.headers.get("X-Ssl_client_verify") == "SUCCESS" and self.request.headers.get("X-SSL-CERT"):
741
chainAsText = unquote(self.request.headers.get("X-SSL-CERT"))
742
+ else:
743
+ return S_ERROR(DErrno.ECERTFIND, "Valid certificate not found.")
744
else:
745
return S_ERROR(DErrno.ECERTFIND, "Valid certificate not found.")
746
0 commit comments