Skip to content

Commit

Permalink
Fix PKISubsystem.type initialization
Browse files Browse the repository at this point in the history
  • Loading branch information
edewata committed Nov 16, 2023
1 parent 048becd commit e94640d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/server/python/pki/server/subsystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def __init__(self, instance, subsystem_name):
self.config = {}
self.registry = {}

self.type = None # e.g. CA, KRA
self.type = subsystem_name.upper() # e.g. CA, KRA

self.default_doc_base = os.path.join(
pki.SHARE_DIR,
Expand Down

0 comments on commit e94640d

Please sign in to comment.