Merge "Return request-id to APIs that don't respond with a body"

This commit is contained in:
Zuul 2019-02-21 03:37:20 +00:00 committed by Gerrit Code Review
commit 4d63fa73cd
2 changed files with 5 additions and 1 deletions

View File

@ -864,7 +864,7 @@ class Resource(wsgi.Application):
for hdr, val in response.headers.items():
val = utils.convert_str(val)
response.headers[hdr] = val
_set_request_id_header(request, response.headers)
if not request.api_version_request.is_null():
response.headers[API_VERSION_REQUEST_HEADER] = (
request.api_version_request.get_string())

View File

@ -0,0 +1,4 @@
---
fixes:
- APIs that were not returning a request ID ('x-compute-request-id') in the
response headers have been fixed.