]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
python-common: Correct typo in private_key naming field.
authorJustin Caratzas <jcaratza@ibm.com>
Mon, 6 Oct 2025 23:25:43 +0000 (19:25 -0400)
committerJustin Caratzas <jcaratza@ibm.com>
Mon, 6 Oct 2025 23:25:43 +0000 (19:25 -0400)
Signed-off-by: Paulo E. Castro <pecastro@wormholenet.com>
(cherry picked from commit 4bcab139830eead485412219509fbe390b046aec)

Resolves: rhbz#2401206

src/python-common/ceph/cryptotools/remote.py

index 9a00a3106278f78de49c1d8eb210d9d047ce35c7..1ad410814454add5470166e97e96c5fd0ef0e160 100644 (file)
@@ -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,
         )