content-type change

This commit is contained in:
Justin Tisdale 2022-09-26 17:09:10 -04:00
parent 5809088f27
commit 6537f4fe74

View File

@ -249,28 +249,18 @@ class Monitor extends BeanModel {
log.debug("monitor", `[${this.name}] Prepare Options for axios`);
// Check if this.headers already contains a content-type header set by the user; if so, don't inject one
let contentTypeUserDefinedHeader = this.headers.find(function(header) {
return header[0].toLowerCase() == "content-type";
});
let contentType = contentTypeUserDefinedHeader ?
contentTypeUserDefinedHeader[1] :
null;
let contentType = null;
let bodyValue = null;
if (this.body && !this.httpBodyEncoding || this.httpBodyEncoding === "json") {
bodyValue = JSON.parse(this.body);
contentType = contentType ? contentType : "application/json";
contentType = "application/json";
} else if (this.body && (this.httpBodyEncoding === "xml")) {
bodyValue = this.body;
contentType = contentType ? contentType : "text/xml";
contentType = "text/xml";
} else if (this.body && (this.httpBodyEncoding === "form")) {
bodyValue = this.body;
contentType = contentType ? contentType : "application/x-www-form-urlencoded";
contentType = "application/x-www-form-urlencoded";
}
const options = {