diff options
| author | Jenkins <jenkins@review.openstack.org> | 2013-01-14 13:27:45 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2013-01-14 13:27:45 +0000 |
| commit | 414886eafd18f5c1d58f97ab477597207d98acdc (patch) | |
| tree | f924a3307b20305cc46ccf089955d8bd36671205 | |
| parent | a41c698c69e0d5f2708ab55adb1098e0746421f8 (diff) | |
| parent | 96c04dd35eb99dee13a74daaf5e1636bc68cb136 (diff) | |
Merge "Make it clearer that network.api.API is nova-network specific."
| -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() |
