From 41cff2646854c78c77d2c4555c13c1ae42dc7401 Mon Sep 17 00:00:00 2001 From: Swann Croiset Date: Mon, 19 Aug 2013 14:06:01 +0200 Subject: [PATCH] Pass token as a callable to Ceilometer client fixes bug #1209240 Change-Id: I5e3e3bb15135273c887f9518f148f17e8953fc96 --- heat/engine/clients.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/heat/engine/clients.py b/heat/engine/clients.py index 85d0934d..7866973f 100644 --- a/heat/engine/clients.py +++ b/heat/engine/clients.py @@ -195,7 +195,7 @@ class OpenStackClients(object): 'auth_url': con.auth_url, 'service_type': 'metering', 'project_id': con.tenant, - 'token': self.auth_token, + 'token': lambda: self.auth_token, 'endpoint': self.url_for(service_type='metering'), } -- 2.45.2