Change log message when loading v2 storage

Since InfluxDB v2 storage backend has been merged, the warning
when using a v2 storage backend has been changed.

Change-Id: Ie636decdcf2ab6b12196b15eced9985d8a02aa50
This commit is contained in:
Luka Peschke 2018-12-18 11:54:01 +01:00
parent 3eb300691d
commit e398932115
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