From 95f8122fbb852cebcb2fd8c95ca6db7a2190bbdf Mon Sep 17 00:00:00 2001 From: Peter Sabaini Date: Wed, 4 Sep 2024 09:27:59 +0200 Subject: [PATCH] Trivial: COS test fix typo Signed-off-by: Peter Sabaini --- zaza/openstack/charm_tests/ceph/mon/integration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zaza/openstack/charm_tests/ceph/mon/integration.py b/zaza/openstack/charm_tests/ceph/mon/integration.py index 9484b37a6..7ba18299b 100644 --- a/zaza/openstack/charm_tests/ceph/mon/integration.py +++ b/zaza/openstack/charm_tests/ceph/mon/integration.py @@ -119,7 +119,7 @@ def get_prom_api_url(grafana_agent): ) ga = yaml.safe_load(ga_yaml) url = ga['integrations']['prometheus_remote_write'][0]['url'] - if url.ensdwith("/write"): + if url.endswith("/write"): url = url[:-6] # lob off the /write return url