a09064a5d1
Service layer has been simplified by removing abstraction and making the implementation more in line with other OpenStack projects. Moved Heartbeat code out of Service class and into the console scripts. We only need one instance of the Heartbeat Emitter. Cleaned up the WSGI code by making use of the reusable oslo_service.wsgi code. * Added Heartbeat to designate-sink. * Cleaned up and refactored Service layers. * Fixed various bugs e.g. errors on shutdown. * Removed deprecated options host, port etc. * Simplified Heartbeat implementation. Closes-Bug: #1442141 Change-Id: I536b92407bf6ca5bddf4c048909cd13d4e094d26
19 lines
440 B
YAML
19 lines
440 B
YAML
---
|
|
upgrade:
|
|
- |
|
|
The previously deprecated options ``api_host``, ``api_port``, ``host`` and
|
|
``port`` have been permanently removed and are replaced by ``listen``.
|
|
|
|
e.g.
|
|
|
|
.. code-block:: ini
|
|
|
|
[service:api]
|
|
listen = 0.0.0.0:9001
|
|
|
|
..
|
|
- |
|
|
The Designate ``sink`` service will now use the heartbeat reporting system to
|
|
report its status. This was already the case for all other Designate
|
|
services.
|