Send deployment ID in notification event response elements (#6991)

This commit is contained in:
Harshavardhana
2018-12-18 10:05:26 -08:00
committed by kannappanr
parent c5bf22fd90
commit 3be616de3f
2 changed files with 10 additions and 3 deletions

View File

@@ -743,7 +743,9 @@ func (s customHeaderHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
// Set custom headers such as x-amz-request-id and x-minio-deployment-id
// for each request.
w.Header().Set(responseRequestIDKey, mustGetRequestID(UTCNow()))
w.Header().Set(responseDeploymentIDKey, globalDeploymentID)
if globalDeploymentID != "" {
w.Header().Set(responseDeploymentIDKey, globalDeploymentID)
}
s.handler.ServeHTTP(logger.NewResponseWriter(w), r)
}