Error deleting Project

来源:互联网 发布:mac 开启acl 编辑:程序博客网 时间:2024/05/19 23:03

Problem description:

        Delete_Failed: Error deleting project: Could not find project: 28bb842df7374435ba9873fd9a153f96 (HTTP 404) 

Reason: 

     Heat bug:https://bugs.launchpad.net/heat/+bug/1308812  
     If heat-engine is terminated mid-delete, a stack could become undeletable because of NotFound exceptions being raised on keystone delete stack domain operations.

          

Solution:

 Get patch from openstack.org:https://review.openstack.org/#/c/156559           

[root@controller neutron]# mysql

MariaDB [(none)]> use heat

MariaDB [heat]> delete from event where stack_id='fbc32526-9129-4b63-8d67-66bdde668a26';

Query OK, 292 rows affected (0.01 sec)

MariaDB [heat]> delete from stack where stack_id='fbc32526-9129-4b63-8d67-66bdde668a26';

ERROR 1054 (42S22): Unknown column 'stack_id' in 'where clause'

MariaDB [heat]> delete from stack where id='fbc32526-9129-4b63-8d67-66bdde668a26';

Query OK, 1 row affected (0.00 sec)

0 0