summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ipaplatform/redhat/services.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipaplatform/redhat/services.py b/ipaplatform/redhat/services.py
index 8759cab76..c9994e409 100644
--- a/ipaplatform/redhat/services.py
+++ b/ipaplatform/redhat/services.py
@@ -212,8 +212,8 @@ class RedHatCAService(RedHatService):
status = dogtag._parse_ca_status(stdout)
# end of workaround
- except Exception:
- status = 'check interrupted'
+ except Exception as e:
+ status = 'check interrupted due to error: %s' % e
root_logger.debug('The CA status is: %s' % status)
if status == 'running':
break