From 20d89cccd586a73cd51381db40ced17a333df8fe Mon Sep 17 00:00:00 2001 From: Andrew Hutchings Date: Tue, 13 Nov 2012 11:48:55 +0000 Subject: [PATCH] Fix option cross references Fixes bug #1076453 Change-Id: Ib8204dbf4a784d11262b1b726482dc3a1194bbb3 --- doc/pool_mgm/code.rst | 3 ++- doc/worker/code.rst | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/doc/pool_mgm/code.rst b/doc/pool_mgm/code.rst index f85cfbfa..630a83f7 100644 --- a/doc/pool_mgm/code.rst +++ b/doc/pool_mgm/code.rst @@ -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. diff --git a/doc/worker/code.rst b/doc/worker/code.rst index 3a6f8854..6c1236a5 100644 --- a/doc/worker/code.rst +++ b/doc/worker/code.rst @@ -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