Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

Commit

Permalink
chore: update charm libraries (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
observability-noctua-bot authored May 2, 2024
1 parent 65a28b8 commit 3a1ce22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/charms/traefik_k8s/v2/ingress.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def _on_ingress_revoked(self, event: IngressPerAppRevokedEvent):

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

PYDEPS = ["pydantic"]

Expand Down Expand Up @@ -590,7 +590,7 @@ def proxied_endpoints(self) -> Dict[str, Dict[str, str]]:
if PYDANTIC_IS_V1:
results[ingress_relation.app.name] = ingress_data.ingress.dict()
else:
results[ingress_relation.app.name] = ingress_data.ingress.model_dump(mode=json) # type: ignore
results[ingress_relation.app.name] = ingress_data.ingress.model_dump(mode="json")
return results


Expand Down

0 comments on commit 3a1ce22

Please sign in to comment.