chore: Fix pylint errors
Fixed a couple pylint errors and disabled remaining false positives. Change-Id: Ib7e6f42e98f31af1c731c0b69fd26de1572b4471
This commit is contained in:
parent
7a9c45a5b2
commit
9e3eb1336f
@ -368,7 +368,10 @@ class Catalog(object):
|
|||||||
|
|
||||||
# NOTE(cpp-cabrera): parse general opts: 'drivers'
|
# NOTE(cpp-cabrera): parse general opts: 'drivers'
|
||||||
uri = shard['uri']
|
uri = shard['uri']
|
||||||
|
|
||||||
|
# pylint: disable=no-member
|
||||||
storage_type = six.moves.urllib_parse.urlparse(uri).scheme
|
storage_type = six.moves.urllib_parse.urlparse(uri).scheme
|
||||||
|
|
||||||
driver_dict_opts = {'storage': storage_type}
|
driver_dict_opts = {'storage': storage_type}
|
||||||
driver_opts = common_utils.dict_to_conf(driver_dict_opts)
|
driver_opts = common_utils.dict_to_conf(driver_dict_opts)
|
||||||
|
|
||||||
@ -437,7 +440,7 @@ class Catalog(object):
|
|||||||
shard = select.weighted(self._shards_ctrl.list(limit=0))
|
shard = select.weighted(self._shards_ctrl.list(limit=0))
|
||||||
|
|
||||||
if not shard:
|
if not shard:
|
||||||
raise errors.NoShardsFound()
|
raise errors.NoShardFound()
|
||||||
|
|
||||||
self._catalogue_ctrl.insert(project, queue, shard['name'])
|
self._catalogue_ctrl.insert(project, queue, shard['name'])
|
||||||
|
|
||||||
|
@ -52,6 +52,6 @@ class DriverBase(object):
|
|||||||
self._conf.register_opts(_TRANSPORT_OPTIONS)
|
self._conf.register_opts(_TRANSPORT_OPTIONS)
|
||||||
|
|
||||||
@abc.abstractmethod
|
@abc.abstractmethod
|
||||||
def listen():
|
def listen(self):
|
||||||
"""Start listening for client requests (self-hosting mode)."""
|
"""Start listening for client requests (self-hosting mode)."""
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
|
@ -54,6 +54,7 @@ class FunctionalTestBase(testing.TestBase):
|
|||||||
# NOTE(flaper87): Use running instances.
|
# NOTE(flaper87): Use running instances.
|
||||||
if self.cfg.marconi.run_server:
|
if self.cfg.marconi.run_server:
|
||||||
if not (self.server and self.server.is_alive()):
|
if not (self.server and self.server.is_alive()):
|
||||||
|
# pylint: disable=not-callable
|
||||||
self.server = self.server_class()
|
self.server = self.server_class()
|
||||||
self.server.start(self.mconf)
|
self.server.start(self.mconf)
|
||||||
|
|
||||||
|
@ -49,11 +49,14 @@ class ControllerBaseTest(testing.TestBase):
|
|||||||
|
|
||||||
oslo_cache.register_oslo_configs(self.conf)
|
oslo_cache.register_oslo_configs(self.conf)
|
||||||
cache = oslo_cache.get_cache(self.conf.cache_url)
|
cache = oslo_cache.get_cache(self.conf.cache_url)
|
||||||
|
|
||||||
|
# pylint: disable=not-callable
|
||||||
self.driver = self.driver_class(self.conf, cache)
|
self.driver = self.driver_class(self.conf, cache)
|
||||||
self._prepare_conf()
|
self._prepare_conf()
|
||||||
|
|
||||||
self.addCleanup(self._purge_databases)
|
self.addCleanup(self._purge_databases)
|
||||||
|
|
||||||
|
# pylint: disable=not-callable
|
||||||
self.controller = self.controller_class(self.driver)
|
self.controller = self.controller_class(self.driver)
|
||||||
|
|
||||||
def _prepare_conf(self):
|
def _prepare_conf(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user