in network_topology/views.py:
    def _quota_exceeded(self, quota):
        usages = quotas.tenant_quota_usages(self.request)
        available = usages[quota]['available'] <<<<<<<<<<
        return available <= 0

line 107, in _quota_exceeded#012    available =
usages[quota]['available']#012KeyError: 'available'

is being thrown

$ neutron quota-show
+---------------------+-------+
| Field               | Value |
+---------------------+-------+
| floatingip          | 50    |
| network             | -1    |
| port                | -1    |
| router              | -1    |
| security_group      | 10    |
| security_group_rule | 100   |
| subnet              | -1    |
+---------------------+-------+

suggests that quota is not broken underneath it, although i'm not sure
where 'available' comes from.

(there are other spots in this & other file which also fail).

a) is anyone else seeing this?
b) where does 'available' come from, is there some field in my database
that needs to be upgraded?
_______________________________________________
Mailing list: http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack
Post to     : openstack@lists.openstack.org
Unsubscribe : http://lists.openstack.org/cgi-bin/mailman/listinfo/openstack

Reply via email to