]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commitdiff
Update v1 deprecation warnings
authorMike Perez <thingee@gmail.com>
Thu, 26 Feb 2015 20:07:22 +0000 (12:07 -0800)
committerMike Perez <thingee@gmail.com>
Thu, 26 Feb 2015 20:11:13 +0000 (12:11 -0800)
As discussed on IRC and mailing lists, we're going to give more time for
deprecation of the v1 API. Since we introduced the deprecation of the v1
API in Juno, we can remove it after EOL of Juno, which will be the
release of Liberty.

Change-Id: I2d6013717d84f98a20ed64b4ebf09bac6bb0843e

cinder/api/__init__.py

index 4112d598c68b2217f8dc4e423a1e846d188d89d8..bf2ac7eb691aa59a3ab6310c09528f9924598912 100644 (file)
@@ -28,8 +28,8 @@ LOG = logging.getLogger(__name__)
 
 def root_app_factory(loader, global_conf, **local_conf):
     if CONF.enable_v1_api:
-        LOG.warn(_LW('The v1 api is deprecated and will be removed after the '
-                     'Juno release. You should set enable_v1_api=false and '
+        LOG.warn(_LW('The v1 api is deprecated and will be removed in the '
+                     'Liberty release. You should set enable_v1_api=false and '
                      'enable_v2_api=true in your cinder.conf file.'))
     else:
         del local_conf['/v1']