Remove unused LOG and CONF

This is to remove unused LOG and CONF to keep code clean.

Change-Id: I5bca3cb114a4074fa2d837233723d1a94d1f6434
This commit is contained in:
zhufl 2016-09-01 15:33:23 +08:00
parent f8f757a46d
commit a0ec13f6d4
3 changed files with 0 additions and 11 deletions

View File

@ -15,7 +15,6 @@
DRAC Driver for remote system management using Dell Remote Access Card.
"""
from oslo_log import log as logging
from oslo_utils import importutils
from ironic.common import exception
@ -32,9 +31,6 @@ from ironic.drivers.modules import pxe
from ironic.drivers import utils
LOG = logging.getLogger(__name__)
class PXEDracDriver(base.BaseDriver):
"""DRAC driver using PXE for deploy."""

View File

@ -15,13 +15,10 @@
from oslo_log import log as logging
from tempest.common import waiters
from tempest import config
from tempest import test
from ironic_tempest_plugin.tests.scenario import baremetal_manager
CONF = config.CONF
LOG = logging.getLogger(__name__)

View File

@ -13,8 +13,6 @@
# License for the specific language governing permissions and limitations
# under the License.
from oslo_log import log as logging
from ironic_tempest_plugin.tests.scenario import baremetal_manager
from tempest import config
from tempest.lib.common.utils import data_utils
@ -23,8 +21,6 @@ from tempest import test
CONF = config.CONF
LOG = logging.getLogger(__name__)
class BaremetalMultitenancy(baremetal_manager.BaremetalScenarioTest,
manager.NetworkScenarioTest):