|
@ -352,6 +352,7 @@ def make_request(config, req, alias=None, alias_privkey=None): |
|
|
pr = make_unsigned_request(req) |
|
|
pr = make_unsigned_request(req) |
|
|
key_path = config.get('ssl_privkey') |
|
|
key_path = config.get('ssl_privkey') |
|
|
cert_path = config.get('ssl_chain') |
|
|
cert_path = config.get('ssl_chain') |
|
|
|
|
|
requestor = None |
|
|
|
|
|
|
|
|
if key_path and cert_path: |
|
|
if key_path and cert_path: |
|
|
sign_request_with_x509(pr, key_path, cert_path) |
|
|
sign_request_with_x509(pr, key_path, cert_path) |
|
|