Add Http_Content_Length to env variables

Http_ContentLengh will be deprecated in the future.

Signed-off-by: Matias Pan <matias.pan26@gmail.com>
This commit is contained in:
Matias Pan
2019-04-04 09:57:28 -03:00
committed by Alex Ellis
parent f0c91f9615
commit 9477970924

View File

@ -228,7 +228,9 @@ func getAdditionalEnvs(config *WatchdogConfig, r *http.Request, method string) [
}
envs = append(envs, fmt.Sprintf("Http_Method=%s", method))
// DEPRECATED: Http_ContentLength will be deprecated in favour
envs = append(envs, fmt.Sprintf("Http_ContentLength=%d", r.ContentLength))
envs = append(envs, fmt.Sprintf("Http_Content_Length=%d", r.ContentLength))
if config.writeDebug {
log.Println("Query ", r.URL.RawQuery)