4d3fd33614cf94f39b9729da7c2d75c355c0712b

This requires the lastest development version of python-gearman to support the new keepalive options. Using these options (off by default) will solve the problem when the Gearman job server gets paused/unpaused in a cloud environment, but the clients and workers never recognize that they are indeed disconnected. WARNING: Not backwards compatible with older versions of the python-gearman driver, even if the SSL and keepalive options are not specified. This is a change in behavior. Change-Id: Ic8db6676f7408364b6fe9a8690deb72bb6e2772c
Description ----------- Libra is a tool set to create and manage load balancers in an OpenStack environment. Tools ----- * libra_pool_mgm Python daemon that manages a pool of Nova instances. * libra_worker Python daemon that will receive messages from an API server via a Gearman job server to create/modify load balancers on the local machine. * libra_api Python daemon to act as the client API server. * libra_admin_api Python daemon providing an admininstrative API server primarily for libra_pool_mgm and libra_statsd Running Tests ------------- Tox is the best way to run the tests. Tox, if unavailable, can be installed via the Python pip command: $ pip install tox Once it is installed, run the tests: $ tox More Documentation ------------------ You can build the complete documentation with: $ pip install Sphinx $ python setup.py build_sphinx
Description