From 6e94d2822259737571efade8669715961df17969 Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Fri, 8 Mar 2024 17:58:58 +0100 Subject: [PATCH] Enable CloudKitty APIv2 Cloudkitty has released it's v2 API couple of cycles ago with [1]. High time to enable it as well. [1] https://review.opendev.org/c/openstack/cloudkitty/+/832923 Change-Id: I11838780e84d6e721033b5c7aa77c8a0ca8ea121 --- templates/api-paste.ini.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/api-paste.ini.j2 b/templates/api-paste.ini.j2 index 8e2d56f..91e4063 100644 --- a/templates/api-paste.ini.j2 +++ b/templates/api-paste.ini.j2 @@ -10,7 +10,7 @@ pipeline = cors healthcheck http_proxy_to_wsgi request_id authtoken ck_api paste.app_factory = cloudkitty.api.app:app_factory [filter:authtoken] -acl_public_routes = /, /v1, /healthcheck +acl_public_routes = /, /v1, /v2, /healthcheck paste.filter_factory = cloudkitty.api.middleware:AuthTokenMiddleware.factory [filter:request_id]