Merge pull request #857 from openstack-charmers/bug/ceph-dashboard-auth

Strip trailing slash from dashboard URL
This commit is contained in:
Billy Olsen
2022-08-16 15:32:59 -07:00
committed by GitHub
@@ -168,7 +168,7 @@ class CephDashboardTest(test_utils.BaseCharmTest):
url = json.loads(output).get('dashboard')
if url is None:
raise tenacity.RetryError(None)
return url
return url.strip('/')
def test_dashboard_units(self):
"""Check dashboard units are configured correctly."""