Comment 10 for bug 1062046

Revision history for this message
Itsuro Oda (oda-g) wrote :

Hi,

patch set 3:

This is a list of unfixed.

[invalid parameter]
o subnet create
  - host_routes duplicate
    "host_routes": [
      {"destination": "10.100.2.0/24", "nexthop": "10.100.1.254"},
      {"destination": "10.100.2.0/24", "nexthop": "10.100.1.254"}]
o port create
  - fixed_ips duplicate
    "fixed_ips": [
      {"ip_address": "10.100.1.4", "subnet_id": <same-subnet-id>},
      {"ip_address": "10.100.1.4", "subnet_id": <same-subnet-id>},
    ]
o port update
  - fixed_ips duplicate
    "fixed_ips": [
       {"ip_address": "10.100.1.4", "subnet_id": <same-subnet-id>},
       {"ip_address": "10.100.1.4", "subnet_id": <same-subnet-id>},
     ]

[illegal json format]
---
curl -v -H "X-Auth-Token: 5399f4a8e6d04768894b620edbb07d41" -H "Content-Type: application/json" -X PUT -d '{{"name": "aaa"}}' http://172.17.190.3:9696/v2.0/networks/e763c6ba-6cc9-4bbb-9d2d-f547fe6c4392
{"QuantumError": "Request Failed: internal server error while processing your request."}
---

[null specified]
o port create
- "fixed_ips": null
---
curl -H 'X-Auth-Token: e65b12ec013946518b0a993b0d3df2ea' -X POST -H 'Content-Type: application/json' -d '{"port": {"network_id": "9090a21d-55ce-45a2-a9b4-db811c901a3f", "fixed_ips": null}}' http://172.17.190.3:9696/v2.0/ports
{"QuantumError": "Request Failed: internal server error while processing your request."}
---
o port update
- "fixed_ips": null  [NotFixed]
---
curl -H 'X-Auth-Token: e65b12ec013946518b0a993b0d3df2ea' -X PUT -H 'Content-Type: application/json' -d '{"port": {"name":"test", "fixed_ips": null}}' http://172.17.190.3:9696/v2.0/ports/07ab0d74-662c-4792-8bbe-b23e0e40c7b2
{"QuantumError": "Request Failed: internal server error while processing your request."}
---

---bulk---

o bulk network create
- "networks": null
---
curl -H 'X-Auth-Token: e65b12ec013946518b0a993b0d3df2ea' -H 'Content-Type: application/json' -X POST -d '{"networks": null}' http://172.17.190.3:9696/v2.0/networks
{"QuantumError": "Request Failed: internal server error while processing your request."}
---

o bulk subnet create
- "subnets": null
---
curl -H 'X-Auth-Token: e65b12ec013946518b0a993b0d3df2ea' -X POST -H 'Content-Type: application/json' -d '{"subnets": null}}' http://172.17.190.3:9696/v2.0/subnets
{"QuantumError": "Request Failed: internal server error while processing your request."}
---

o bulk port create
- "ports": null  [NotFixed]
---
curl -H 'X-Auth-Token: e65b12ec013946518b0a993b0d3df2ea' -X POST -H 'Content-Type: application/json' -d '{"ports": null}' http://172.17.190.3:9696/v2.0/ports
{"QuantumError": "Request Failed: internal server error while processing your request."}
---

Thanks.