From 1a0e7bdc793f1bec2e52733dc23e7a60124bfca1 Mon Sep 17 00:00:00 2001 From: Sirushti Murugesan Date: Fri, 10 Apr 2015 12:37:52 +0530 Subject: [PATCH] Fix Zaqar Client's service_type Change-Id: I943894e9e23a5b36e9bd7fda7dad896a8687c2de Closes-Bug: #1442489 --- contrib/heat_zaqar/heat_zaqar/client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/heat_zaqar/heat_zaqar/client.py b/contrib/heat_zaqar/heat_zaqar/client.py index 8505d96dda..f6e7e56e8d 100644 --- a/contrib/heat_zaqar/heat_zaqar/client.py +++ b/contrib/heat_zaqar/heat_zaqar/client.py @@ -42,12 +42,12 @@ class ZaqarClientPlugin(client_plugin.ClientPlugin): 'os_auth_token': con.auth_token, 'os_auth_url': con.auth_url, 'os_project_id': con.tenant, - 'os_service_type': 'queuing', + 'os_service_type': 'messaging', } auth_opts = {'backend': 'keystone', 'options': opts} conf = {'auth_opts': auth_opts} - endpoint = self.url_for(service_type='queuing') + endpoint = self.url_for(service_type='messaging') client = zaqarclient.Client(url=endpoint, conf=conf)