From: Justin Caratzas Date: Mon, 6 Oct 2025 23:25:43 +0000 (-0400) Subject: python-common: Correct typo in private_key naming field. X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=be350dd6fd5209c04a0085b98012573c934095be;p=ceph-ci.git python-common: Correct typo in private_key naming field. Signed-off-by: Paulo E. Castro (cherry picked from commit 4bcab139830eead485412219509fbe390b046aec) Resolves: rhbz#2401206 --- diff --git a/src/python-common/ceph/cryptotools/remote.py b/src/python-common/ceph/cryptotools/remote.py index 9a00a310627..1ad41081445 100644 --- a/src/python-common/ceph/cryptotools/remote.py +++ b/src/python-common/ceph/cryptotools/remote.py @@ -113,7 +113,7 @@ class CryptoCaller: """ result = self._run( ['create_self_signed_cert'], - input_data=json.dumps({'dname': dname, 'pkey': pkey}), + input_data=json.dumps({'dname': dname, 'private_key': pkey}), capture_output=True, check=True, )