diff options
| author | Tomoe Sugihara <tomoe@midokura.com> | 2012-02-20 16:47:55 +0900 |
|---|---|---|
| committer | Tomoe Sugihara <tomoe@midokura.com> | 2012-02-20 17:00:43 +0900 |
| commit | 1ebf522fbe21387a33add48c3df92aa834fa5b46 (patch) | |
| tree | fcbf65fef3619056cb4f58d030c0e4a53a04b90d | |
| parent | 757d8aa6f5e412aae08c2b1fb2d0c6f174d2f29c (diff) | |
| download | nova-1ebf522fbe21387a33add48c3df92aa834fa5b46.tar.gz nova-1ebf522fbe21387a33add48c3df92aa834fa5b46.tar.xz nova-1ebf522fbe21387a33add48c3df92aa834fa5b46.zip | |
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
| -rw-r--r-- | nova/network/api.py | 2 |
1 files changed, 1 insertions, 1 deletions
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', |
