]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commitdiff
Remove compat cfg wrapper
authorMark McLoughlin <markmc@redhat.com>
Fri, 22 Feb 2013 17:25:07 +0000 (17:25 +0000)
committerMark McLoughlin <markmc@redhat.com>
Fri, 22 Feb 2013 17:25:07 +0000 (17:25 +0000)
This wrapper was there to allow oslo-config changes through the gate
while keystoneclient hadn't been updated.

Change-Id: I3d48673af58ae379e8e4d2c7fb4b4d81f3ed67dd

cinder/backup/services/swift.py
cinder/openstack/common/cfg.py [deleted file]
cinder/tests/api/v1/test_snapshot_metadata.py
cinder/tests/api/v2/test_snapshot_metadata.py
cinder/tests/test_volume_configuration.py
cinder/tests/test_xenapi_sm.py
cinder/volume/configuration.py
cinder/volume/drivers/huawei/huawei_iscsi.py
cinder/volume/drivers/san/hp/hp_3par_fc.py
cinder/volume/drivers/scality.py

index 8e39b9ea80e7a54be4aeb469fe6fac0de2d9021e..259cb8e85f2efa620255e65bac126d68fa7b96d7 100644 (file)
                                None (to disable), zlib and bz2 (default: zlib)
 """
 
-import eventlet
 import hashlib
 import httplib
 import json
 import os
 import StringIO
 
+import eventlet
+from oslo.config import cfg
+
 from cinder.db import base
 from cinder import exception
 from cinder import flags
-from cinder.openstack.common import cfg
 from cinder.openstack.common import log as logging
 from cinder.openstack.common import timeutils
 from swiftclient import client as swift
diff --git a/cinder/openstack/common/cfg.py b/cinder/openstack/common/cfg.py
deleted file mode 100644 (file)
index c35dcb8..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-# vim: tabstop=4 shiftwidth=4 softtabstop=4
-
-# Copyright 2013 Red Hat, Inc.
-#
-#    Licensed under the Apache License, Version 2.0 (the "License"); you may
-#    not use this file except in compliance with the License. You may obtain
-#    a copy of the License at
-#
-#         http://www.apache.org/licenses/LICENSE-2.0
-#
-#    Unless required by applicable law or agreed to in writing, software
-#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-#    License for the specific language governing permissions and limitations
-#    under the License.
-
-from oslo.config.cfg import *
index 3376589a1ba0454e4702474d6857839475b2c8fe..5720e88dc91bab61db24070cf527b4f586682869 100644 (file)
@@ -17,6 +17,7 @@
 
 import uuid
 
+from oslo.config import cfg
 import webob
 
 from cinder.api import extensions
@@ -24,7 +25,6 @@ from cinder.api.v1 import snapshot_metadata
 from cinder.api.v1 import snapshots
 import cinder.db
 from cinder import exception
-from cinder.openstack.common import cfg
 from cinder.openstack.common import jsonutils
 from cinder import test
 from cinder.tests.api import fakes
index 51bf9dcbc083a25d84e4a43ebedc8db8519a59d9..ae0333283ad19b8590e9d4d358d9af4592e76c7e 100644 (file)
@@ -17,6 +17,7 @@
 
 import uuid
 
+from oslo.config import cfg
 import webob
 
 from cinder.api import extensions
@@ -24,7 +25,6 @@ from cinder.api.v2 import snapshot_metadata
 from cinder.api.v2 import snapshots
 import cinder.db
 from cinder import exception
-from cinder.openstack.common import cfg
 from cinder.openstack.common import jsonutils
 from cinder import test
 from cinder.tests.api import fakes
index af57fd2378ec01f4584de2a45f1a4f6aa2fa18b4..d2751c1d98d2e2b192805419255df9859843e40e 100644 (file)
@@ -18,8 +18,9 @@
 
 """Tests for the configuration wrapper in volume drivers."""
 
+from oslo.config import cfg
+
 from cinder import flags
-from cinder.openstack.common import cfg
 from cinder.openstack.common import log as logging
 from cinder import test
 from cinder.volume import configuration
index 9a07aba0ed902495534db162484133b48630cf7f..2d82c00c162c004caf1034d56f3d9de15d4e6563 100644 (file)
 #    License for the specific language governing permissions and limitations
 #    under the License.
 
+import contextlib
+import StringIO
+import unittest
+
+import mock
+import mox
+from oslo.config import cfg
+
 from cinder.db import api as db_api
 from cinder import exception
-from cinder.openstack.common import cfg
 from cinder.volume import configuration as conf
 from cinder.volume import driver as parent_driver
 from cinder.volume.drivers.xenapi import lib
 from cinder.volume.drivers.xenapi import sm as driver
 from cinder.volume.drivers.xenapi import tools
-import contextlib
-import mock
-import mox
-import StringIO
-import unittest
 
 
 class MockContext(object):
index fa5d34a05966e2a70e53fffd70accf347a1c8223..13935be6764f42eefc7f245c1c48fb161aff60ce 100644 (file)
@@ -42,8 +42,9 @@ option group. This is due to the way cfg works. All cfg options must be defined
 and registered in the group in which they are used.
 """
 
+from oslo.config import cfg
+
 from cinder import flags
-from cinder.openstack.common import cfg
 from cinder.openstack.common import log as logging
 
 
index 4667925f3574da637869f016b19e25d9baefaea2..f5d732ce187146dbcd3cd943bf0b921b5e2363bd 100644 (file)
@@ -21,11 +21,12 @@ Volume driver for HUAWEI T series and Dorado storage systems.
 import re
 import socket
 import time
+
+from oslo.config import cfg
 from xml.etree import ElementTree as ET
 
 from cinder import exception
 from cinder import flags
-from cinder.openstack.common import cfg
 from cinder.openstack.common import excutils
 from cinder.openstack.common import log as logging
 from cinder import utils
index d9d0334c458a2984e5a25041b279224b8670b474..9e5b97cc97642cd3f142d98e8f3d4d4f07347520 100644 (file)
@@ -27,10 +27,10 @@ volume_driver=cinder.volume.drivers.san.hp.hp_3par_fc.HP3PARFCDriver
 
 from hp3parclient import client
 from hp3parclient import exceptions as hpexceptions
+from oslo.config import cfg
 
 from cinder import exception
 from cinder import flags
-from cinder.openstack.common import cfg
 from cinder.openstack.common import lockutils
 from cinder.openstack.common import log as logging
 import cinder.volume.driver
index 67574f83bff97aa87f2a91795eefb1cc065636f9..31a41909fff7a0b48185876a250376f0c117a894 100644 (file)
@@ -21,10 +21,11 @@ import os
 import urllib2
 import urlparse
 
+from oslo.config import cfg
+
 from cinder import exception
 from cinder import flags
 from cinder.image import image_utils
-from cinder.openstack.common import cfg
 from cinder.openstack.common import log as logging
 from cinder.volume import driver