From 1ebf522fbe21387a33add48c3df92aa834fa5b46 Mon Sep 17 00:00:00 2001 From: Tomoe Sugihara Date: Mon, 20 Feb 2012 16:47:55 +0900 Subject: Fix broken method signiture GET on a network in os-networks API would fail because of the signiture mismatch. This fixes the issue. Change-Id: I4865e93a6a2ad26aa4abcc78b1056152c2b59369 --- nova/network/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nova/network/api.py b/nova/network/api.py index b60ca6e79..10d87fe6a 100644 --- a/nova/network/api.py +++ b/nova/network/api.py @@ -38,7 +38,7 @@ class API(base.Base): FLAGS.network_topic, {'method': 'get_all_networks'}) - def get(self, context, fixed_range, network_uuid): + def get(self, context, network_uuid): return rpc.call(context, FLAGS.network_topic, {'method': 'get_network', -- cgit