in fc/http_handler_response.go [47:56]
func (r *fcResponse) WriteHeader(statusCode int) {
if r.wroteHeader {
return
}
r.wroteHeader = true
r.status = statusCode
if r.header.Get("Date") == "" {
r.header.Set("Date", time.Now().UTC().Format(http.TimeFormat))
}
}