Fix a LOG.warning which didn't work properly

Found when checking ci logs here:

http://logs.openstack.org/41/587041/3/check/ironic-inspector-tempest-dsvm-discovery/7912a3a/logs/screen-ironic-inspector.txt.gz#_Oct_17_16_44_39_477744

It's supposed to be printing missing arguments when constructing
an http client.

The http client is supposed to be removed ?soon?, so if the fix is
not required, please let me know.

Change-Id: I2bad387afa2ede56da7164a7bc9a5ac461e78d9c
This commit is contained in:
Kaifeng Wang 2018-10-18 10:44:28 +08:00
parent 1eb7a1ee73
commit a28ccb9ef8
1 changed files with 1 additions and 1 deletions

View File

@ -744,7 +744,7 @@ def _construct_http_client(session=None,
if kwargs:
endpoint = kwargs.pop('endpoint_override', None)
LOG.warning('The following arguments are being ignored when '
'constructing the client: %s'), ', '.join(kwargs)
'constructing the client: %s', ', '.join(kwargs))
return HTTPClient(endpoint=endpoint,
token=token,