Di Li created AMBARI-15866:
------------------------------

             Summary: Renew kerberos keyfile rest API returnes a malformed 
/request URL 
                 Key: AMBARI-15866
                 URL: https://issues.apache.org/jira/browse/AMBARI-15866
             Project: Ambari
          Issue Type: Bug
          Components: ambari-server
    Affects Versions: 2.2.0
            Reporter: Di Li
             Fix For: trunk


curl -u admin:admin 
'http://myserver.mydomain.com:8080/api/v1/clusters/mycluster?regenerate_keytabs=all'
 -X PUT -H 'X-Requested-By: ambari' --data 
'{"Clusters":{"security_type":"KERBEROS"}}'
{
  "href" : 
"http://myserver.mydomain.com:8080/api/v1/clusters/mycluster?regenerate_keytabs=all/requests/15";,
  "Requests" : {
    "id" : 15,
    "status" : "Accepted"
  }
}

Notice the "regenerate_keytabs=all" piece in the URL returned by the Ambari 
server. If user pulls request status against that URL, he will get the 
following err.

curlit GET 
http://myserver.mydomain.com:8080/api/v1/clusters/mycluster?regenerate_keytabs=all/requests/15
{
  "status" : 400,
  "message" : "The properties [regenerate_keytabs] specified in the request or 
predicate are not supported for the resource type Cluster."
}

The correct url should be 
http://myserver.mydomain.com:8080/api/v1/clusters/mycluster/requests/15

This does not effect Ambari web UI as Ambari UI pulls status of all requests by 
/requests url, instead of using individual request URLs.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to