Activity log for bug #1237611

Date Who What changed Old value New value Message
2013-10-09 19:32:35 Tushar Patil bug added bug
2013-10-10 00:38:03 Tushar Patil tags ntt
2013-10-10 05:14:31 Abhijeet Malawade nova: assignee Abhijeet Malawade (abhijeet-malawade)
2013-10-10 09:18:19 OpenStack Infra nova: status New In Progress
2013-10-21 17:49:02 Tushar Patil description When user passes only white spaces to flavor name, it creates flavor successfully. Since name is a mandatory parameter, it should restrict user from passing white spaces. { "flavor": { "name": " " "ram": 1024, "vcpus": 2, "disk": 10, "id": "10", "os-flavor-access:is_public": false } } Actual output: HTTP/1.1 200 OK Expected output: HTTP/1.1 400 Bad Request When user passes only white spaces to flavor name, it creates flavor successfully. Since name is a mandatory parameter, it should restrict user from passing white spaces. Also leading and trailing white spaces should be removed before saving it to the backend similar to the instance name. {     "flavor": {         "name": " "         "ram": 1024,         "vcpus": 2,         "disk": 10,         "id": "10",         "os-flavor-access:is_public": false     } } For example name = " " #not allowed name = "extra large" #allowed name = " extra large " #allowed, but leading and trailing white spaces will be trimmed before saving it to the backend. Actual output: HTTP/1.1 200 OK Expected output: HTTP/1.1 400 Bad Request
2013-11-06 11:46:29 OpenStack Infra nova: status In Progress Fix Committed
2013-12-03 23:14:09 Russell Bryant nova: milestone icehouse-1
2013-12-04 10:34:32 Thierry Carrez nova: status Fix Committed Fix Released
2014-04-17 08:51:47 Thierry Carrez nova: milestone icehouse-1 2014.1