Skip to content

Commit

Permalink
Fix critical failure exception
Browse files Browse the repository at this point in the history
  • Loading branch information
fmarco76 committed May 10, 2024
1 parent ee390d6 commit bad3adf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base/server/python/pki/server/deployment/pkihelper.py
Original file line number Diff line number Diff line change
Expand Up @@ -1657,8 +1657,8 @@ def execute_using_pki(
str(tpshost),
str(tpsport))
logger.error(log.PKI_SUBPROCESS_ERROR_1, output)
if critical_failure:
raise Exception(log.PKI_SUBPROCESS_ERROR_1 % output)
if critical_failure:
raise Exception(log.PKI_SUBPROCESS_ERROR_1 % output)


class Systemd(object):
Expand Down

0 comments on commit bad3adf

Please sign in to comment.