Skip to content

Commit

Permalink
fix config name
Browse files Browse the repository at this point in the history
  • Loading branch information
IbraAoad committed Nov 27, 2024
1 parent 30185b9 commit 8dbcc2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ def _loadbalancer_annotations(self) -> Optional[dict]:
Returns:
A dictionary of valid annotations if the config is valid, otherwise None.
"""
annotations = cast(Optional[str], self.config.get("basic_auth_user", None))
annotations = cast(Optional[str], self.config.get("loadbalancer_annotations", None))
return self._parse_annotations(annotations)

def _on_forward_auth_config_changed(self, event: AuthConfigChangedEvent):
Expand Down

0 comments on commit 8dbcc2c

Please sign in to comment.