Browse Source

AMBARI-25181: Host registration through Ambari UI failed with an error "Unsupported Media Type" (#3477)

Zhiguo Wu 3 years ago
parent
commit
2d4a401a71
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ambari-web/app/utils/ajax/ajax.js

+ 1 - 1
ambari-web/app/utils/ajax/ajax.js

@@ -3321,7 +3321,7 @@ var formatRequest = function (data) {
   if (this.format) {
   if (this.format) {
     jQuery.extend(opt, this.format(data, opt));
     jQuery.extend(opt, this.format(data, opt));
   }
   }
-  if (!('headers' in opt && 'Content-Type' in opt.headers)) {
+  if (!('headers' in opt && 'Content-Type' in opt.headers) && opt.contentType === undefined) {
     // With the default www-url-form-encoded Content-Type KNOX would corrupt the json content.
     // With the default www-url-form-encoded Content-Type KNOX would corrupt the json content.
     opt.headers['Content-Type'] = 'text/plain';
     opt.headers['Content-Type'] = 'text/plain';
   }
   }