Skip to content

Commit

Permalink
fix _ca_folder_path (#282)
Browse files Browse the repository at this point in the history
  • Loading branch information
IbraAoad authored Mar 21, 2024
1 parent edeb41c commit 6e26257
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def run(self, cmd: List[str]):
Args:
cmd: Command to be run.
"""
self._container.exec(cmd)
self._container.exec(cmd).wait()

@property
def tracing_endpoint(self) -> Optional[str]:
Expand Down
2 changes: 1 addition & 1 deletion src/grafana_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class GrafanaAgentCharm(CharmBase):
_cert_path = "/tmp/agent/grafana-agent.pem"
_key_path = "/tmp/agent/grafana-agent.key"
_ca_path = "/usr/local/share/ca-certificates/grafana-agent-operator.crt"
_ca_folder_path = "/usr/loca/share/ca-certificates"
_ca_folder_path = "/usr/local/share/ca-certificates"

# Pairs of (incoming, [outgoing]) relation names. If any 'incoming' is joined without at least
# one matching 'outgoing', the charm will block. Without any matching outgoing relation we may
Expand Down

0 comments on commit 6e26257

Please sign in to comment.