diff options
| author | Sandy Walsh <sandy.walsh@rackspace.com> | 2011-07-07 06:25:03 -0700 |
|---|---|---|
| committer | Sandy Walsh <sandy.walsh@rackspace.com> | 2011-07-07 06:25:03 -0700 |
| commit | d24a8689dceaae1145d0cc0aa12e60bfdabbe2b2 (patch) | |
| tree | dd02373c921be22456319cdae3629d96f8e0a9ac /nova/compute | |
| parent | bd297ae3bc779853cf82f05d0d4da60305416a99 (diff) | |
| download | nova-d24a8689dceaae1145d0cc0aa12e60bfdabbe2b2.tar.gz nova-d24a8689dceaae1145d0cc0aa12e60bfdabbe2b2.tar.xz nova-d24a8689dceaae1145d0cc0aa12e60bfdabbe2b2.zip | |
unit tests
Diffstat (limited to 'nova/compute')
| -rw-r--r-- | nova/compute/api.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nova/compute/api.py b/nova/compute/api.py index e4992bbfa..8507c5871 100644 --- a/nova/compute/api.py +++ b/nova/compute/api.py @@ -890,7 +890,8 @@ class API(base.Base): """Add fixed_ip from specified network to given instance.""" self._cast_compute_message('add_fixed_ip_to_instance', context, instance_id, network_id) - + + @scheduler_api.reroute_compute("remove_fixed_ip") def remove_fixed_ip(self, context, instance_id, address): """Remove fixed_ip from specified network to given instance.""" |
