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
commit cd7b190a12
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
if int(version) > 1:
LOG.warning('V2 Storage is not considered stable and should not be '
'used in production')
LOG.warning('V2 Storage is in beta. Its API is considered stable but '
'its implementation may still evolve.')
storage_namespace = 'cloudkitty.storage.v{}.backends'.format(version)
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
available: ``sqlalchemy`` and ``hybrid`` (SQLalchemy being the recommended one).
.. warning:: A v2 backend storage is also available. Whether its implementation
nor its API are considered stable yet, and it will evolve during
the Stein cycle. It is available for development purposes only.
.. warning:: A v2 influxdb backend storage is also available. Its API is
considered stable but its implementation may still evolve.
.. code-block:: ini