Comment 8 for bug 1317515

Revision history for this message
Vincent Legoll (vincent-legoll) wrote :

I got bit by this bug on the "nova quota-update" front...

To fix the problems induced by this bug, I did the following:

# Connect to your openstack database (add the right parameters to do so)
$ mysql [...]
mysql> use nova;
mysql> # Have a look at the mess...
mysql> select * from quotas;
mysql> # Ensure that you're selecting the right set of bad rows
mysql> select * from quotas where project_id = "THE_TENANT_NAME";
mysql> # Nuke them all
mysql> delete from quotas where project_id = "THE_TENANT_NAME";