summaryrefslogtreecommitdiffstats
path: root/nova
diff options
context:
space:
mode:
Diffstat (limited to 'nova')
-rw-r--r--nova/api/openstack/servers.py2
-rw-r--r--nova/compute/api.py2
-rw-r--r--nova/compute/manager.py2
-rw-r--r--nova/db/api.py7
-rw-r--r--nova/db/sqlalchemy/migrate_repo/versions/003_add_label_to_networks.py3
-rw-r--r--nova/virt/xenapi/vmops.py6
6 files changed, 11 insertions, 11 deletions
diff --git a/nova/api/openstack/servers.py b/nova/api/openstack/servers.py
index 8b72704ba..33cc3bbde 100644
--- a/nova/api/openstack/servers.py
+++ b/nova/api/openstack/servers.py
@@ -251,7 +251,7 @@ class Controller(wsgi.Controller):
def reset_network(self, req, id):
"""
- admin only operation which resets networking on an instance
+ Reset networking on an instance (admin only).
"""
context = req.environ['nova.context']
diff --git a/nova/compute/api.py b/nova/compute/api.py
index 71879b5b7..ed6f0e34a 100644
--- a/nova/compute/api.py
+++ b/nova/compute/api.py
@@ -468,7 +468,7 @@ class API(base.Base):
def reset_network(self, context, instance_id):
"""
- resets networking on the instance
+ Reset networking on the instance.
"""
self._cast_compute_message('reset_network', context, instance_id)
diff --git a/nova/compute/manager.py b/nova/compute/manager.py
index 1e2b95294..6fab1a41c 100644
--- a/nova/compute/manager.py
+++ b/nova/compute/manager.py
@@ -501,7 +501,7 @@ class ComputeManager(manager.Manager):
@checks_instance_lock
def reset_network(self, context, instance_id):
"""
- resets the networking on the instance
+ Reset networking on the instance.
"""
context = context.elevated()
diff --git a/nova/db/api.py b/nova/db/api.py
index 850a5126f..ce3395932 100644
--- a/nova/db/api.py
+++ b/nova/db/api.py
@@ -505,11 +505,6 @@ def network_get(context, network_id):
return IMPL.network_get(context, network_id)
-def network_get_all(context):
- """Get all networks"""
- return IMPL.network_get_all(context)
-
-
# pylint: disable-msg=C0103
def network_get_associated_fixed_ips(context, network_id):
"""Get all network's ips that have been associated."""
@@ -527,7 +522,7 @@ def network_get_by_instance(context, instance_id):
def network_get_all_by_instance(context, instance_id):
- """Get all networks by instance id or raise if it does not exist."""
+ """Get all networks by instance id or raise if none exist."""
return IMPL.network_get_all_by_instance(context, instance_id)
diff --git a/nova/db/sqlalchemy/migrate_repo/versions/003_add_label_to_networks.py b/nova/db/sqlalchemy/migrate_repo/versions/003_add_label_to_networks.py
index ddfe114cb..5ba7910f1 100644
--- a/nova/db/sqlalchemy/migrate_repo/versions/003_add_label_to_networks.py
+++ b/nova/db/sqlalchemy/migrate_repo/versions/003_add_label_to_networks.py
@@ -1,7 +1,6 @@
# vim: tabstop=4 shiftwidth=4 softtabstop=4
-# Copyright 2010 United States Government as represented by the
-# Administrator of the National Aeronautics and Space Administration.
+# Copyright 2011 OpenStack LLC
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/nova/virt/xenapi/vmops.py b/nova/virt/xenapi/vmops.py
index ea99ff626..842e08f22 100644
--- a/nova/virt/xenapi/vmops.py
+++ b/nova/virt/xenapi/vmops.py
@@ -151,6 +151,8 @@ class VMOps(object):
% locals())
# NOTE(armando): Do we really need to do this in virt?
+ # NOTE(tr3buchet): not sure but wherever we do it, we need to call
+ # reset_network afterwards
timer = utils.LoopingCall(f=None)
def _wait_for_boot():
@@ -437,6 +439,10 @@ class VMOps(object):
return 'http://fakeajaxconsole/fake_url'
def reset_network(self, instance):
+ """
+ Creates uuid arg to pass to make_agent_call and calls it.
+
+ """
args = {'id': str(uuid.uuid4())}
resp = self._make_agent_call('resetnetwork', instance, '', args)