Skip to content

Commit

Permalink
chore: Update charm libraries (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
telcobot committed Feb 25, 2024
1 parent 521b88a commit 2549aeb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/charms/tls_certificates_interface/v3/tls_certificates.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def _on_all_certificates_invalidated(self, event: AllCertificatesInvalidatedEven

# Increment this PATCH version before using `charmcraft publish-lib` or reset
# to 0 if you are raising the major API version
LIBPATCH = 1
LIBPATCH = 2

PYDEPS = ["cryptography", "jsonschema"]

Expand Down Expand Up @@ -1488,10 +1488,10 @@ def get_requirer_csrs(self) -> List[RequirerCSR]:
Returns:
list: List of RequirerCSR objects.
"""
requirer_csrs = []
relation = self.model.get_relation(self.relationship_name)
if not relation:
raise RuntimeError(f"Relation {self.relationship_name} does not exist")
return []
requirer_csrs = []
requirer_relation_data = _load_relation_data(relation.data[self.model.unit])
requirer_csrs_dict = requirer_relation_data.get("certificate_signing_requests", [])
for requirer_csr_dict in requirer_csrs_dict:
Expand Down

0 comments on commit 2549aeb

Please sign in to comment.