add correct HostId instead of deploymentId for error responses (#16686)

This commit is contained in:
Harshavardhana
2023-02-22 02:11:09 -08:00
committed by GitHub
parent 663a0b7783
commit 5c98223c89
5 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -242,7 +242,7 @@ func extractRespElements(w http.ResponseWriter) map[string]string {
}
return map[string]string{
"requestId": w.Header().Get(xhttp.AmzRequestID),
"nodeId": w.Header().Get(xhttp.AmzRequestNodeID),
"nodeId": w.Header().Get(xhttp.AmzRequestHostID),
"content-length": w.Header().Get(xhttp.ContentLength),
// Add more fields here.
}