diff options
author | Robert Collins <robertc@robertcollins.net> | 2013-01-11 15:32:27 +1300 |
---|---|---|
committer | Robert Collins <robertc@robertcollins.net> | 2013-01-11 15:32:27 +1300 |
commit | 96c04dd35eb99dee13a74daaf5e1636bc68cb136 (patch) | |
tree | b80a97fa58628c89a35bf6c363c5a6742177b853 | |
parent | a4e290a0f17b1f773a9d53255857d19b02164bcd (diff) | |
download | nova-96c04dd35eb99dee13a74daaf5e1636bc68cb136.tar.gz nova-96c04dd35eb99dee13a74daaf5e1636bc68cb136.tar.xz nova-96c04dd35eb99dee13a74daaf5e1636bc68cb136.zip |
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
-rw-r--r-- | nova/network/api.py | 6 |
1 files changed, 5 insertions, 1 deletions
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() |