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.
2 parents 715ff8b + bd1afd9 commit 4167fc9Copy full SHA for 4167fc9
src/DIRAC/Core/DISET/private/Transports/SSL/M2Utils.py
@@ -116,7 +116,9 @@ def getM2SSLContext(ctx=None, **kwargs):
116
# CHRIS: I think clientMode was just an internal of pyGSI implementation
117
# if kwargs.get('clientMode', False) and not kwargs.get('useCertificates', False):
118
# if not kwargs.get('useCertificates', False):
119
- if kwargs.get("bServerMode", False) or kwargs.get("useCertificates", False):
+ if kwargs.get("bServerMode", False) or (
120
+ kwargs.get("useCertificates", False) and not kwargs.get("proxyLocation", False)
121
+ ):
122
# Server mode always uses hostcert
123
__loadM2SSLCTXHostcert(ctx)
124
0 commit comments