From 96c04dd35eb99dee13a74daaf5e1636bc68cb136 Mon Sep 17 00:00:00 2001 From: Robert Collins Date: Fri, 11 Jan 2013 15:32:27 +1300 Subject: Make it clearer that network.api.API is nova-network specific. This may save confusion for new folk, as the indirection to rpcapi isn't intended to be used to plug quantum in - instead the whole API object is replaced. Change-Id: Ib3680826b2ab1e18d249f447828fd1ac9e81132f --- nova/network/api.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nova/network/api.py b/nova/network/api.py index 25680e656..159faf6b3 100644 --- a/nova/network/api.py +++ b/nova/network/api.py @@ -74,7 +74,11 @@ def update_instance_cache_with_nw_info(api, context, instance, class API(base.Base): - """API for interacting with the network manager.""" + """API for doing networking via the nova-network network manager. + + This is a pluggable module - other implementations do networking via + other services (such as Quantum). + """ _sentinel = object() -- cgit