From 08aa1cbbb6cfd1f1bc9fe7ac2bc9d26cd9fdcd02 Mon Sep 17 00:00:00 2001 From: Mike Perez Date: Thu, 26 Feb 2015 12:07:22 -0800 Subject: [PATCH] Update v1 deprecation warnings 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cinder/api/__init__.py b/cinder/api/__init__.py index 4112d598c..bf2ac7eb6 100644 --- a/cinder/api/__init__.py +++ b/cinder/api/__init__.py @@ -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'] -- 2.45.2