Description of problem: A bunch of noisy messages from cinder coming from: /usr/lib/python2.7/site-packages/cinder/context.py Message is: "opme1os205 <148>Oct 12 15:45:57 opme1os205 journal: cinder-scheduler 2015-10-12 15:45:57.192 53795 WARNING cinder.context [-] Arguments dropped when creating context: {'user': None, 'tenant': None, 'user_identity': u'- - - - -'}" This is because of: 62 if kwargs: 63 LOG.warn(_('Arguments dropped when creating context: %s') % 64 str(kwargs)) Especially: kwargs Based on explanation in context.py, this param is not necessary here. 59 :param kwargs: Extra arguments that might be present, but we ignore 60 because they possibly came in from older rpc messages. Question from my side, Why do we still keep that __if__ block? I think that there is no dependencies with that block. So we should be able to simply remove those 3 lines. What do you think? If I've missed anything, point it out to me. Shinobu Version-Release number of selected component (if applicable): How reproducible: Steps to Reproduce: 1. 2. 3. Actual results: Expected results: Additional info:
Cinder stopped printing these messages in Juno (6.0).
(In reply to Sergey Gotliv from comment #2) > Cinder stopped printing these messages in Juno (6.0). Will this fix be (able to be) backported to Icehouse based OSP?