NSX|V3: add request-id support

Enable neutron to pass the request id to the NSX for logging.

Change-Id: Ia1a3e3fccd63bbbbd794d4bfbb8960eac84775c8
This commit is contained in:
Gary Kotton 2017-10-22 08:43:06 +03:00 committed by garyk
parent fb13f9dfc6
commit 77ee58c0d4

View File

@ -128,7 +128,8 @@ NSX_V3_NON_VIF_PROFILE = 'nsx-default-switch-security-non-vif-profile'
def inject_headers():
ctx = context_utils.get_current()
if ctx:
return {'X-NSX-EUSER': ctx.__dict__.get('_project_id')}
return {'X-NSX-EUSER': ctx.__dict__.get('_project_id'),
'X-NSX-EREQID': ctx.__dict__.get('request_id')}
return {}