fixed lint errors
This commit is contained in:
parent
5bb0143da4
commit
9778eb7b25
|
@ -107,7 +107,7 @@ class EntrustIssuerPlugin(IssuerPlugin):
|
||||||
key_file = current_app.config.get("ENTRUST_API_KEY")
|
key_file = current_app.config.get("ENTRUST_API_KEY")
|
||||||
user = current_app.config.get("ENTRUST_API_USER")
|
user = current_app.config.get("ENTRUST_API_USER")
|
||||||
password = current_app.config.get("ENTRUST_API_PASS")
|
password = current_app.config.get("ENTRUST_API_PASS")
|
||||||
self.session.cert = (cert_file_path, key_file_path)
|
self.session.cert = (cert_file, key_file)
|
||||||
self.session.auth = (user, password)
|
self.session.auth = (user, password)
|
||||||
self.session.hooks = dict(response=log_status_code)
|
self.session.hooks = dict(response=log_status_code)
|
||||||
# self.session.config['keep_alive'] = False
|
# self.session.config['keep_alive'] = False
|
||||||
|
|
Loading…
Reference in New Issue