diff --git a/.zuul.yaml b/.zuul.yaml index 51949549..61f562f8 100644 --- a/.zuul.yaml +++ b/.zuul.yaml @@ -3,3 +3,7 @@ - openstack-python3-ussuri-jobs - publish-openstack-docs-pti - release-notes-jobs-python3 + check: + jobs: + - tempest-integrated-networking + - neutron-tempest-plugin-dynamic-routing diff --git a/os_ken/services/protocols/bgp/api/base.py b/os_ken/services/protocols/bgp/api/base.py index f1f1b4ef..48ed9fc1 100644 --- a/os_ken/services/protocols/bgp/api/base.py +++ b/os_ken/services/protocols/bgp/api/base.py @@ -193,10 +193,13 @@ def call(symbol, **kwargs): """Calls/executes BGPS public API identified by given symbol and passes given kwargs as param. """ + if 'password' in kwargs: + log_str = str( + dict(kwargs.items() - {'password': kwargs['password']}.items())) + else: + log_str = str(kwargs) LOG.info( - "API method %s called with args: %s", - symbol, - str(dict(kwargs.items() - {'password': kwargs['password']}.items()))) + "API method %s called with args: %s", symbol, log_str) # TODO(PH, JK) improve the way api function modules are loaded from . import all # noqa