Merge "Remove unused LOG"

This commit is contained in:
Jenkins 2017-04-20 19:03:31 +00:00 committed by Gerrit Code Review
commit 80323e1ca6
5 changed files with 0 additions and 13 deletions

View File

@ -14,14 +14,11 @@
from glanceclient import client as glanceclient
from novaclient import client as novaclient
from oslo_log import log as logging
from zun.common import exception
from zun.common import keystone
import zun.conf
LOG = logging.getLogger(__name__)
class OpenStackClients(object):
"""Convenience class to create and cache client instances."""

View File

@ -15,7 +15,6 @@
"""Policy Engine For zun."""
from oslo_log import log as logging
from oslo_policy import policy
from zun.common import exception
@ -24,8 +23,6 @@ import zun.conf
_ENFORCER = None
CONF = zun.conf.CONF
LOG = logging.getLogger(__name__)
# we can get a policy enforcer by this init.
# oslo policy support change policy rule dynamically.

View File

@ -27,7 +27,6 @@ from zun.common.i18n import _
import zun.conf
CONF = zun.conf.CONF
LOG = log.getLogger(__name__)
def prepare_service(argv=None):

View File

@ -13,13 +13,9 @@
# License for the specific language governing permissions and limitations
# under the License.
from oslo_log import log as logging
from zun.api import servicegroup
from zun.scheduler import filters
LOG = logging.getLogger(__name__)
class NoopFilter(filters.BaseHostFilter):
"""Noop filter for now"""

View File

@ -12,12 +12,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from oslo_log import log
from tempest import config
from tempest import test
CONF = config.CONF
lOG = log.getLogger(__name__)
class BaseZunTest(test.BaseTestCase):