diff options
author | Francis Dupont <fdupont@isc.org> | 2021-03-24 18:46:41 +0100 |
---|---|---|
committer | Francis Dupont <fdupont@isc.org> | 2021-03-25 09:31:33 +0100 |
commit | 7912a0857bb9e546ff07de32faa8d838aa209fea (patch) | |
tree | 2fbb4c3afb466c3de40fbaad36e7c4c7816bc57f /src/bin/shell | |
parent | [#1663] Checkpoint (diff) | |
download | kea-7912a0857bb9e546ff07de32faa8d838aa209fea.tar.xz kea-7912a0857bb9e546ff07de32faa8d838aa209fea.zip |
[#1663] Almost finished
Diffstat (limited to 'src/bin/shell')
-rw-r--r-- | src/bin/shell/kea_connector3.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/shell/kea_connector3.py b/src/bin/shell/kea_connector3.py index 809776bced..526827f5eb 100644 --- a/src/bin/shell/kea_connector3.py +++ b/src/bin/shell/kea_connector3.py @@ -38,7 +38,7 @@ def send_to_control_agent(params): ssl_ctx = ssl.create_default_context(ssl.Purpose.SERVER_AUTH) ssl_ctx.load_verify_locations(cafile, capath) if params.cert: - ssl_ctx.load_cert_chain(param.cert[0], param.cert[1]) + ssl_ctx.load_cert_chain(params.cert[0], params.cert[1]) # Establish connection, send the request. resp = urllib.request.urlopen(req, context=ssl_ctx) |