Fix option cross references

Fixes bug #1076453

Change-Id: Ib8204dbf4a784d11262b1b726482dc3a1194bbb3
This commit is contained in:
Andrew Hutchings 2012-11-13 11:48:55 +00:00
parent deadd932bf
commit 20d89cccd5
2 changed files with 5 additions and 3 deletions

View File

@ -123,7 +123,8 @@ Known Drivers Dictionary
.. py:data:: known_drivers
This is the dictionary that maps values for the :option:`--driver` option
This is the dictionary that maps values for the
:option:`libra_pool_mgm.py --driver` option
to a class implementing the driver :py:class:`~MgmDriver` API
for that API server. After implementing a new driver class, you simply add
a new entry to this dictionary to plug in the new driver.

View File

@ -99,7 +99,8 @@ Known Load Balancer Drivers Dictionary
.. py:data:: known_drivers
This is the dictionary that maps values for the :option:`--driver` option
This is the dictionary that maps values for the
:option:`libra_worker.py --driver` option
to a class implementing the driver :py:class:`~LoadBalancerDriver` API
for that appliance. After implementing a new driver class, you simply add
a new entry to this dictionary to plug in the new driver.
@ -137,7 +138,7 @@ The steps shown above are:
the message that it received.
* Based on the contents of the message, the controller then makes the relevant
driver API calls using the :py:class:`~drivers.LoadBalancerDriver` driver
that was selected via the :option:`--driver` option.
that was selected via the :option:`libra_worker.py --driver` option.
* The driver executes the API call. If the driver encounters an error during
execution, an exception is thrown that should be handled by the
:py:class:`~controller.LBaaSController` object. Otherwise, nothing is