From 1dd88b9564dbe94f3294ab447cf0680f0c6f5685 Mon Sep 17 00:00:00 2001 From: Gary Kotton Date: Sun, 6 Oct 2013 01:39:54 -0700 Subject: [PATCH] Fix stable/grizzly gating for Neutron (aka Quantum) The quantum-debug commands would result in: 'ClientManager' object has no attribute 'quantum' Fixes bug: #1234550 Change-Id: I7f5551c724cfe6d75855eee3433b66bb5ce9b1a4 --- neutronclient/common/clientmanager.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/neutronclient/common/clientmanager.py b/neutronclient/common/clientmanager.py index 51f01b950..5521565a1 100644 --- a/neutronclient/common/clientmanager.py +++ b/neutronclient/common/clientmanager.py @@ -46,6 +46,9 @@ class ClientManager(object): """Manages access to API clients, including authentication. """ neutron = ClientCache(neutron_client.make_client) + # Provide support for old quantum commands (for example + # in stable versions) + quantum = neutron def __init__(self, token=None, url=None, auth_url=None,