From 45d7d15c1186bc563393ae0bf131ccf94b1d12c4 Mon Sep 17 00:00:00 2001 From: Florence Blanc-Renaud Date: Feb 15 2021 08:01:10 +0000 Subject: cert plugin: propagate the error for non-existent cert ipa cert-show, ipa cert-revoke and ipa cert-remove-hold do not print meaningful info when called on a non-existent cert id: Certificate operation cannot be completed: Unable to communicate with CMS Propagate the reason from the HTTP message in order to print 'Certificate ID 0x.. not found' Fixes: https://pagure.io/freeipa/issue/8704 Signed-off-by: Florence Blanc-Renaud Reviewed-By: Alexander Bokovoy --- diff --git a/ipaserver/plugins/dogtag.py b/ipaserver/plugins/dogtag.py index d56f82a..d1dbd71 100644 --- a/ipaserver/plugins/dogtag.py +++ b/ipaserver/plugins/dogtag.py @@ -1471,6 +1471,7 @@ class ra(rabase.rabase, RestClient): except errors.HTTPRequestError as e: self.raise_certificate_operation_error( 'get_certificate', + err_msg=e.msg, detail=e.status # pylint: disable=no-member )