Merge "Change log message when loading v2 storage"

This commit is contained in:
Zuul
2018-12-19 10:28:33 +00:00
committed by Gerrit Code Review
2 changed files with 4 additions and 5 deletions

View File

@@ -147,8 +147,8 @@ def get_storage(**kwargs):
version = kwargs.pop('version', None) or cfg.CONF.storage.version version = kwargs.pop('version', None) or cfg.CONF.storage.version
if int(version) > 1: if int(version) > 1:
LOG.warning('V2 Storage is not considered stable and should not be ' LOG.warning('V2 Storage is in beta. Its API is considered stable but '
'used in production') 'its implementation may still evolve.')
storage_namespace = 'cloudkitty.storage.v{}.backends'.format(version) storage_namespace = 'cloudkitty.storage.v{}.backends'.format(version)
if version == 1: if version == 1:

View File

@@ -83,9 +83,8 @@ The following shows the basic configuration items:
It is now time to configure the storage backend. Two storage backends are It is now time to configure the storage backend. Two storage backends are
available: ``sqlalchemy`` and ``hybrid`` (SQLalchemy being the recommended one). available: ``sqlalchemy`` and ``hybrid`` (SQLalchemy being the recommended one).
.. warning:: A v2 backend storage is also available. Whether its implementation .. warning:: A v2 influxdb backend storage is also available. Its API is
nor its API are considered stable yet, and it will evolve during considered stable but its implementation may still evolve.
the Stein cycle. It is available for development purposes only.
.. code-block:: ini .. code-block:: ini