Skip to content

Commit

Permalink
Fix secret key
Browse files Browse the repository at this point in the history
  • Loading branch information
lloesche committed Oct 9, 2023
1 parent 310add4 commit dc35280
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fixca/ca.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def store_ca_certs(self, exclude_system: bool = True) -> None:
set_secret(
namespace=namespace,
secret_name="fix-ca-cert",
data={"ca.crt": cert_to_bytes(self.cert).decode("utf-8")},
data={"ca.pem": cert_to_bytes(self.cert).decode("utf-8")},
)


Expand Down

0 comments on commit dc35280

Please sign in to comment.