Merge "ignore useless WARNING log message"

This commit is contained in:
Zuul 2018-03-13 07:54:49 +00:00 committed by Gerrit Code Review
commit 56bcba2dc0

View File

@ -62,6 +62,7 @@ class RequestContext(context.RequestContext):
# safely ignore this as we don't use it. # safely ignore this as we don't use it.
kwargs.pop('user_identity', None) kwargs.pop('user_identity', None)
kwargs.pop('global_request_id', None) kwargs.pop('global_request_id', None)
kwargs.pop('project', None)
if kwargs: if kwargs:
LOG.warning('Arguments dropped when creating context: %s', LOG.warning('Arguments dropped when creating context: %s',
str(kwargs)) str(kwargs))