From c010846179f58dab89d0eab99fc753388693aa78 Mon Sep 17 00:00:00 2001 From: Feilong Wang Date: Thu, 25 Jun 2020 14:51:58 +1200 Subject: [PATCH] Print response after issuing CA rotate request Change-Id: Ia58a316235c96d36ee4cb8c1b012565ae2489f9c --- magnumclient/osc/v1/certificates.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/magnumclient/osc/v1/certificates.py b/magnumclient/osc/v1/certificates.py index 0d4d0642..b3daf3f3 100644 --- a/magnumclient/osc/v1/certificates.py +++ b/magnumclient/osc/v1/certificates.py @@ -51,6 +51,8 @@ class RotateCa(command.Command): } mag_client.certificates.rotate_ca(**opts) + print("Request to rotate the CA certificate for cluster %s " + "has been accepted." % cluster.uuid) class ShowCa(command.Command):