Activity log for bug #1586931

Date Who What changed Old value New value Message
2016-05-30 07:43:26 Monica Tian bug added bug
2016-05-30 07:43:37 Monica Tian tempest: assignee Monica Tian (ytianyt)
2016-05-30 07:43:47 Monica Tian tempest: status New In Progress
2016-05-30 17:59:54 Ken'ichi Ohmichi bug task added nova
2016-06-03 02:30:51 Monica Tian summary TestServerBasicOps: Test fails with redundant step of deleting server TestServerBasicOps: Test fails when deleting server and floating ip almost at the same time
2016-06-03 02:34:12 Monica Tian description In tempest.scenario.test_server_basic_ops.TestServerBasicOps.test_server_basic_ops, last step: self.servers_client.delete_server(self.instance['id']) is not necessary since there is cleanup in create_server, otherwise, it may cause failure with following deletion of floating ip: Here is the partial log: 2016-05-29 21:51:29.499 29791 INFO tempest.lib.common.rest_client [req-c3588ac4-21ca-47c3-bdb1-62088efd7a8b ] Request (TestServerBasicOps:test_server_basic_ops): 204 DELETE https://<url>:8774/v2/159886ce087a4f8fbfbcab14947d96b1/servers/6d44763b-ea79-4b5b-b57e-714191802c7c 0.465s 2016-05-29 21:51:29.499 29791 DEBUG tempest.lib.common.rest_client [req-c3588ac4-21ca-47c3-bdb1-62088efd7a8b ] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'} Body: None Response - Headers: {'status': '204', 'content-length': '0', 'content-location': 'https://<url>:8774/v2/159886ce087a4f8fbfbcab14947d96b1/servers/6d44763b-ea79-4b5b-b57e-714191802c7c', 'date': 'Mon, 30 May 2016 02:51:29 GMT', 'x-compute-request-id': 'req-c3588ac4-21ca-47c3-bdb1-62088efd7a8b', 'content-type': 'application/json', 'connection': 'close'} Body: _log_request_full tempest/lib/common/rest_client.py:422 2016-05-29 21:51:30.410 29791 INFO tempest.lib.common.rest_client [req-db2323f5-3d58-4fd7-ae51-44f5525c6689 ] Request (TestServerBasicOps:_run_cleanups): 500 DELETE https://<url>:8774/v2/159886ce087a4f8fbfbcab14947d96b1/os-floating-ips/948912f6-ce03-4856-922b-59c4f16d3740 0.910s 2016-05-29 21:51:30.410 29791 DEBUG tempest.lib.common.rest_client [req-db2323f5-3d58-4fd7-ae51-44f5525c6689 ] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'} Body: None Response - Headers: {'status': '500', 'content-length': '224', 'content-location': 'https://<url>:8774/v2/159886ce087a4f8fbfbcab14947d96b1/os-floating-ips/948912f6-ce03-4856-922b-59c4f16d3740', 'date': 'Mon, 30 May 2016 02:51:30 GMT', 'x-compute-request-id': 'req-db2323f5-3d58-4fd7-ae51-44f5525c6689', 'content-type': 'application/json; charset=UTF-8', 'connection': 'close'} Body: {"computeFault": {"message": "Unexpected API Error. Please report this at http://bugs.launchpad.net/nova/ and attach the Nova API log if possible.\n<class 'neutronclient.common.exceptions.PortNotFoundClient'>", "code": 500}} In tempest.scenario.test_server_basic_ops.TestServerBasicOps.test_server_basic_ops, after last step: self.servers_client.delete_server(self.instance['id']) it doesn't wait for the server to be deleted, and then deletes the floating ip immediately in the clean up, this will cause faiure: Here is the partial log: 2016-05-29 21:51:29.499 29791 INFO tempest.lib.common.rest_client [req-c3588ac4-21ca-47c3-bdb1-62088efd7a8b ] Request (TestServerBasicOps:test_server_basic_ops): 204 DELETE https://<url>:8774/v2/159886ce087a4f8fbfbcab14947d96b1/servers/6d44763b-ea79-4b5b-b57e-714191802c7c 0.465s 2016-05-29 21:51:29.499 29791 DEBUG tempest.lib.common.rest_client [req-c3588ac4-21ca-47c3-bdb1-62088efd7a8b ] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}         Body: None     Response - Headers: {'status': '204', 'content-length': '0', 'content-location': 'https://<url>:8774/v2/159886ce087a4f8fbfbcab14947d96b1/servers/6d44763b-ea79-4b5b-b57e-714191802c7c', 'date': 'Mon, 30 May 2016 02:51:29 GMT', 'x-compute-request-id': 'req-c3588ac4-21ca-47c3-bdb1-62088efd7a8b', 'content-type': 'application/json', 'connection': 'close'}         Body: _log_request_full tempest/lib/common/rest_client.py:422 2016-05-29 21:51:30.410 29791 INFO tempest.lib.common.rest_client [req-db2323f5-3d58-4fd7-ae51-44f5525c6689 ] Request (TestServerBasicOps:_run_cleanups): 500 DELETE https://<url>:8774/v2/159886ce087a4f8fbfbcab14947d96b1/os-floating-ips/948912f6-ce03-4856-922b-59c4f16d3740 0.910s 2016-05-29 21:51:30.410 29791 DEBUG tempest.lib.common.rest_client [req-db2323f5-3d58-4fd7-ae51-44f5525c6689 ] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}         Body: None     Response - Headers: {'status': '500', 'content-length': '224', 'content-location': 'https://<url>:8774/v2/159886ce087a4f8fbfbcab14947d96b1/os-floating-ips/948912f6-ce03-4856-922b-59c4f16d3740', 'date': 'Mon, 30 May 2016 02:51:30 GMT', 'x-compute-request-id': 'req-db2323f5-3d58-4fd7-ae51-44f5525c6689', 'content-type': 'application/json; charset=UTF-8', 'connection': 'close'}         Body: {"computeFault": {"message": "Unexpected API Error. Please report this at http://bugs.launchpad.net/nova/ and attach the Nova API log if possible.\n<class 'neutronclient.common.exceptions.PortNotFoundClient'>", "code": 500}}
2016-06-03 03:17:57 Ken'ichi Ohmichi tempest: status In Progress Won't Fix
2016-06-03 03:26:53 Matthew Treinish tempest: status Won't Fix Incomplete
2016-06-03 04:46:06 OpenStack Infra tempest: status Incomplete In Progress
2016-06-06 01:26:07 Takashi Natsume nova: status New Incomplete
2016-06-06 01:26:38 Takashi Natsume tags api neutron
2016-07-02 18:13:59 Rossella Sblendido bug task added neutron
2016-07-02 18:20:55 OpenStack Infra neutron: status New In Progress
2016-07-02 18:20:55 OpenStack Infra neutron: assignee Rossella Sblendido (rossella-o)
2016-07-02 18:21:25 Rossella Sblendido neutron: importance Undecided Medium
2016-07-06 10:06:05 Miguel Angel Ajo tags api neutron api liberty-backport-potential mitaka-backport-potential neutron
2016-07-06 18:51:20 OpenStack Infra neutron: status In Progress Fix Released
2016-07-09 00:53:32 OpenStack Infra tags api liberty-backport-potential mitaka-backport-potential neutron api in-stable-liberty liberty-backport-potential mitaka-backport-potential neutron
2016-07-09 00:54:33 OpenStack Infra tags api in-stable-liberty liberty-backport-potential mitaka-backport-potential neutron api in-stable-liberty in-stable-mitaka liberty-backport-potential mitaka-backport-potential neutron
2016-07-13 13:15:03 Markus Zoeller (markus_z) nova: status Incomplete New
2016-08-04 18:34:25 Michael Gugino bug task added openstack-ansible
2016-08-06 00:31:10 Ken'ichi Ohmichi nova: assignee Ken'ichi Ohmichi (oomichi)
2016-08-06 00:31:21 Ken'ichi Ohmichi nova: milestone newton-3
2016-08-06 04:16:21 OpenStack Infra nova: status New In Progress
2016-08-16 18:52:05 Matt Riedemann nova: importance Undecided Medium
2016-08-16 18:52:32 Matt Riedemann nominated for series nova/mitaka
2016-08-16 18:52:32 Matt Riedemann bug task added nova/mitaka
2016-08-16 18:52:42 Matt Riedemann nova/mitaka: status New Confirmed
2016-08-16 22:58:59 Ken'ichi Ohmichi tempest: status In Progress Won't Fix
2016-08-18 04:53:58 OpenStack Infra nova: status In Progress Fix Released
2016-08-19 14:39:59 Michael Gugino openstack-ansible: status New Fix Released
2016-09-07 19:29:15 Matt Riedemann nova/mitaka: status Confirmed In Progress
2016-09-07 19:29:19 Matt Riedemann nova/mitaka: importance Undecided Medium
2016-09-07 19:29:25 Matt Riedemann nova/mitaka: assignee Ken'ichi Ohmichi (oomichi)
2016-09-07 19:29:36 Matt Riedemann nominated for series nova/liberty
2016-09-07 19:29:36 Matt Riedemann bug task added nova/liberty
2016-09-07 19:29:56 Matt Riedemann tags api in-stable-liberty in-stable-mitaka liberty-backport-potential mitaka-backport-potential neutron api in-stable-liberty in-stable-mitaka neutron
2016-09-07 19:30:01 Matt Riedemann nova/liberty: status New In Progress
2016-09-07 19:30:07 Matt Riedemann nova/liberty: importance Undecided Medium
2016-09-07 19:30:11 Matt Riedemann nova/liberty: assignee Ken'ichi Ohmichi (oomichi)
2016-09-07 20:39:37 OpenStack Infra nova/mitaka: status In Progress Fix Committed
2016-09-08 21:40:12 Matt Riedemann nova/liberty: status In Progress Won't Fix
2017-06-16 12:20:28 Sean Dague nova/liberty: status Won't Fix Fix Released
2017-06-16 17:42:47 Sean Dague nova/mitaka: status Fix Committed Fix Released
2017-07-13 05:54:26 chandan kumar tempest: assignee Monica Tian (ytianyt)