Skip to content

Instantly share code, notes, and snippets.

@sombrafam
Created March 16, 2022 16:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sombrafam/3088a3f014dc00e69925b96c351feaf5 to your computer and use it in GitHub Desktop.
Save sombrafam/3088a3f014dc00e69925b96c351feaf5 to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
ubuntu@buneary:~/nova$ cat bad.txt
ubuntu@buneary:~/nova$ tig
ubuntu@buneary:~/nova$ git checkout d435387
Note: switching to 'd435387'.
You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by switching back to a branch.
If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -c with the switch command. Example:
git switch -c <new-branch-name>
Or undo this operation with:
git switch -
Turn off this advice by setting config variable advice.detachedHead to false
HEAD is now at d43538712c Adds regression test for bug LP#1944619
ubuntu@buneary:~/nova$ git show HEAD
commit d43538712c034023bdb3e25cd7adfdee409ed596 (HEAD)
Author: Erlon R. Cruz <erlon@canonical.com>
Date: Tue Dec 7 17:51:53 2021 -0300
Adds regression test for bug LP#1944619
Related-bug: #1944619
Change-Id: Ia208ef0dd0bab1c59d025234f4da7537c39cda61
diff --git a/nova/tests/functional/regressions/test_bug_1944619.py b/nova/tests/functional/regressions/test_bug_1944619.py
new file mode 100644
index 0000000000..1868ffe656
--- /dev/null
+++ b/nova/tests/functional/regressions/test_bug_1944619.py
@@ -0,0 +1,87 @@
+# Copyright 2021, Canonical, Inc. All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
+import fixtures
+
+from nova import exception as nova_exceptions
+from nova.tests.fixtures import libvirt as fakelibvirt
+from nova.tests.functional import integrated_helpers
+from nova.tests.functional.libvirt import base
+
+
+class TestRollbackWithHWOffloadedOVS(
+ base.LibvirtMigrationMixin,
+ base.ServersTestBase,
+ integrated_helpers.InstanceHelperMixin
+):
+ """Regression test for bug LP#1944619
+
+ Assert the behaviour observed in bug LP#1944619 caused by the live
+ migration cleanup code being used to cleanup pre-live migration failures.
+ When SRIOV devices are in use on a VM, that will cause the source host to
+ try to re-attach a VIF not actually de-attached causing a failure.
+
+ The exception mocked in pre_live_migration reproduce an arbitrary error
+ that might cause the pre-live migration process to fail and
+ rollback_live_migration_at_source reproduce the device re-attach failure.
+ """
+
+ api_major_version = 'v2.1'
+ microversion = 'latest'
+ ADMIN_API = True
+
+ def setUp(self):
+ super().setUp()
+
+ self.start_compute(
+ hostname='src',
+ host_info=fakelibvirt.HostInfo(
+ cpu_nodes=1, cpu_sockets=1, cpu_cores=4, cpu_threads=1))
+ self.start_compute(
+ hostname='dest',
+ host_info=fakelibvirt.HostInfo(
+ cpu_nodes=1, cpu_sockets=1, cpu_cores=4, cpu_threads=1))
+
+ self.src = self.computes['src']
+ self.dest = self.computes['dest']
+
+ lib_path = "nova.virt.libvirt.driver.LibvirtDriver"
+ funtion_path = "rollback_live_migration_at_source"
+ mock_lib_path = "%s.%s" % (lib_path, funtion_path)
+ self.libvirt_mock = self.useFixture(
+ fixtures.MockPatch(mock_lib_path,
+ side_effect=fakelibvirt.libvirtError(
+ defmsg="libVirt duplicated dev error")))
+
+ funtion_path = "pre_live_migration"
+ mock_lib_path = "%s.%s" % (lib_path, funtion_path)
+ self.useFixture(fixtures.MockPatch(
+ mock_lib_path,
+ side_effect=nova_exceptions.DestinationDiskExists(
+ path='/var/non/existent'))
+ )
+
+ def test_rollback_pre_live_migration(self):
+ self.server = self._create_server(host='src', networks='none')
+
+ # Live migrate the instance to another host
+ self._live_migrate(self.server, migration_expected_state='error',
+ server_expected_state='MIGRATING')
+ # FIXME(erlon): In the current behavior,
+ # rollback_live_migration_at_source is called if an error happens
+ # during the pre_live_migration phase on the destination and therefore
+ # triggers the observed bug. rollback_live_migration_at_source should
+ # *not* be called for when errors happen during pre_live_migration
+ # phase.
+ self.libvirt_mock.mock.assert_called_once()
ubuntu@buneary:~/nova$ for i in $(seq 0 100); do echo "Tox run $i"; tox -e functional-py39 nova.tests.functional.regressions; done
Tox run 0
functional-py39 recreate: /home/ubuntu/nova/.tox/functional-py39
functional-py39 installdeps: -chttps://releases.openstack.org/constraints/upper/master, -r/home/ubuntu/nova/requirements.txt, -r/home/ubuntu/nova/test-requirements.txt, openstack-placement>=1.0.0
functional-py39 develop-inst: /home/ubuntu/nova
functional-py39 installed: alembic==1.7.6,amqp==5.0.9,appdirs==1.4.4,attrs==21.4.0,automaton==2.5.0,autopage==0.5.0,bandit==1.7.4,bcrypt==3.2.0,cachetools==5.0.0,castellan==3.10.1,certifi==2021.10.8,cffi==1.15.0,charset-normalizer==2.0.12,cliff==3.10.1,cmd2==2.4.0,colorama==0.4.4,coverage==6.3.2,cryptography==36.0.1,cursive==0.2.2,ddt==1.4.4,debtcollector==2.4.0,decorator==5.1.1,dnspython==2.1.0,dogpile.cache==1.1.5,eventlet==0.33.0,extras==1.0.0,fasteners==0.17.3,fixtures==3.0.0,flake8==3.8.4,future==0.18.2,futurist==2.4.0,gabbi==2.4.0,gitdb==4.0.9,GitPython==3.1.27,greenlet==1.1.2,hacking==3.1.0,idna==3.3,iniconfig==1.1.1,iso8601==1.0.2,Jinja2==3.0.3,jmespath==0.10.0,jsonpatch==1.32,jsonpath-rw==1.4.0,jsonpath-rw-ext==1.2.2,jsonpointer==2.2,jsonschema==3.2.0,keystoneauth1==4.5.0,keystonemiddleware==9.4.0,kombu==5.2.4,lxml==4.8.0,Mako==1.1.6,MarkupSafe==2.1.1,mccabe==0.6.1,microversion-parse==1.0.1,mock==4.0.3,msgpack==1.0.3,munch==2.5.0,mypy==0.931,mypy-extensions==0.4.3,netaddr==0.8.0,netifaces==0.11.0,networkx==2.7.1,-e git+https://review.opendev.org/openstack/nova@d43538712c034023bdb3e25cd7adfdee409ed596#egg=nova,numpy==1.22.3,openstack-placement==6.0.0,openstacksdk==0.61.0,os-brick==5.2.0,os-client-config==2.1.0,os-resource-classes==1.1.0,os-service-types==1.7.0,os-traits==2.7.0,os-vif==2.7.1,os-win==5.6.0,osc-lib==2.5.0,oslo.cache==2.10.1,oslo.concurrency==4.5.0,oslo.config==8.8.0,oslo.context==4.1.0,oslo.db==11.2.0,oslo.i18n==5.1.0,oslo.log==4.7.0,oslo.messaging==12.13.0,oslo.metrics==0.4.0,oslo.middleware==4.5.1,oslo.policy==3.11.0,oslo.privsep==2.7.0,oslo.reports==2.3.0,oslo.rootwrap==6.3.1,oslo.serialization==4.3.0,oslo.service==2.8.0,oslo.upgradecheck==1.5.0,oslo.utils==4.12.2,oslo.versionedobjects==2.6.0,oslotest==4.5.0,osprofiler==3.4.2,ovs==2.16.0,ovsdbapp==1.15.1,packaging==21.3,paramiko==2.8.1,Paste==3.5.0,PasteDeploy==2.1.1,pbr==5.8.1,pluggy==1.0.0,ply==3.11,prettytable==3.2.0,prometheus-client==0.13.1,psutil==5.9.0,psycopg2-binary==2.9.3,py==1.11.0,pycadf==3.1.1,pycodestyle==2.6.0,pycparser==2.21,pydot==1.4.2,pyflakes==2.2.0,pyinotify==0.9.6,PyMySQL==1.0.2,PyNaCl==1.5.0,pyOpenSSL==22.0.0,pyparsing==3.0.7,pyperclip==1.8.2,pyroute2==0.6.6,pyroute2.core==0.6.6,pyroute2.ethtool==0.6.6,pyroute2.ipdb==0.6.6,pyroute2.ipset==0.6.6,pyroute2.ndb==0.6.6,pyroute2.nftables==0.6.6,pyroute2.nslink==0.6.6,pyrsistent==0.18.1,pytest==7.0.1,python-barbicanclient==5.3.0,python-cinderclient==8.3.0,python-dateutil==2.8.2,python-glanceclient==3.6.0,python-ironicclient==4.11.0,python-keystoneclient==4.4.0,python-neutronclient==7.8.0,python-subunit==1.4.0,pytz==2021.3,PyYAML==6.0,repoze.lru==0.7,requests==2.27.1,requests-mock==1.9.3,requestsexceptions==1.4.0,retrying==1.3.3,rfc3986==1.5.0,Routes==2.5.1,simplejson==3.17.6,six==1.16.0,smmap==5.0.0,sortedcontainers==2.4.0,SQLAlchemy==1.4.31,sqlalchemy-migrate==0.13.0,sqlparse==0.4.2,statsd==3.3.0,stestr==3.2.1,stevedore==3.5.0,taskflow==4.6.4,Tempita==0.5.2,tenacity==6.3.1,testresources==2.0.1,testscenarios==0.5.0,testtools==2.5.0,tomli==2.0.1,tooz==2.10.1,types-cryptography==3.3.15,types-enum34==1.1.8,types-ipaddress==1.0.8,types-paramiko==2.8.13,typing_extensions==4.1.1,urllib3==1.26.8,vine==5.0.0,voluptuous==0.12.2,warlock==1.3.3,wcwidth==0.2.5,WebOb==1.8.7,websockify==0.10.0,wrapt==1.13.3,wsgi-intercept==1.9.3,yappi==1.3.3
functional-py39 run-test-pre: PYTHONHASHSEED='931271759'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
2022-03-15 18:53:33.570 536711 INFO oslo_service.periodic_task [req-4fcf6adc-c414-4bb4-a7e6-79840328c413 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.571 536721 INFO oslo_service.periodic_task [req-b4c65be6-b841-4585-8a08-36d6966c4733 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.618 536713 INFO oslo_service.periodic_task [req-9a6f0213-b47d-4efa-8923-f0499ac8c6b4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.657 536709 INFO oslo_service.periodic_task [req-9b7e787e-23f5-463c-945f-4cde47cf5aa0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.691 536733 INFO oslo_service.periodic_task [req-faf5f994-e36a-4826-a24f-a0dc8d8e6bbe - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.713 536705 INFO oslo_service.periodic_task [req-38c57f26-d964-4d12-a8a8-0f12d29c064b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.720 536723 INFO oslo_service.periodic_task [req-b3a5198d-d18d-4037-a7e9-580b14b8fa7e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.722 536715 INFO oslo_service.periodic_task [req-fcbb6068-c00e-4055-a882-b1d7c92ecf91 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.735 536717 INFO oslo_service.periodic_task [req-d394f71a-7db4-414d-8063-8170754acc5b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.743 536747 INFO oslo_service.periodic_task [req-3087d811-00f3-4464-bb2b-826d32acdad9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.754 536725 INFO oslo_service.periodic_task [req-1eaf9bfe-0fa6-4d52-acff-77c2d3a384a1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.801 536735 INFO oslo_service.periodic_task [req-84c2e4f0-6943-45e7-9f12-8c094722e018 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.810 536765 INFO oslo_service.periodic_task [req-509f947f-ba14-4909-a99f-a94650bf01bd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.810 536707 INFO oslo_service.periodic_task [req-52e98bbd-039d-4034-9ccc-8e9a68bc2a4d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.826 536773 INFO oslo_service.periodic_task [req-2b8cbfe8-9839-47cb-b15e-301842958489 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.833 536727 INFO oslo_service.periodic_task [req-55fa0655-2f95-49fc-b74b-683a878ea233 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.839 536761 INFO oslo_service.periodic_task [req-0c64b6a1-7acd-4f44-8f12-b0cff1bb145e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.851 536729 INFO oslo_service.periodic_task [req-665bce9a-cd44-47b2-bd09-e7201dc900fd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.881 536767 INFO oslo_service.periodic_task [req-697b30de-a4ca-482b-9536-0e133bb02326 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.886 536743 INFO oslo_service.periodic_task [req-ad76c82a-158f-42e0-b79e-23afee69da31 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.902 536719 INFO oslo_service.periodic_task [req-efacf917-61de-4b15-aaa9-bfc2592834ea - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.916 536785 INFO oslo_service.periodic_task [req-3512928e-7b0f-49e1-aa42-c4b13be7559b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.924 536777 INFO oslo_service.periodic_task [req-a72a84ba-390c-4712-ba6b-d67a56873ed7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.941 536797 INFO oslo_service.periodic_task [req-ba57a750-5955-4ed6-bbb2-d47be094ca61 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.953 536731 INFO oslo_service.periodic_task [req-dc8a4104-67ef-4b17-96a7-6fda9abcae10 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.968 536775 INFO oslo_service.periodic_task [req-6c59bef5-3c4e-47ac-892e-58912033c170 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.970 536801 INFO oslo_service.periodic_task [req-74645b52-14f0-47ae-b371-56d1db847803 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.992 536749 INFO oslo_service.periodic_task [req-355aa7c5-8ebd-40b9-b658-fb249bebd855 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.995 536799 INFO oslo_service.periodic_task [req-6159f5ef-5b52-4439-bced-36f2dda467f0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.997 536739 INFO oslo_service.periodic_task [req-1215ae6a-e079-40e6-972c-c9df7b99c602 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:33.999 536813 INFO oslo_service.periodic_task [req-1dad5f38-0047-4077-852f-de26d4e09d9c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:34.013 536810 INFO oslo_service.periodic_task [req-973e66a7-2868-4ca3-b399-9823b421cd05 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:34.015 536741 INFO oslo_service.periodic_task [req-c7984325-c118-4492-8d35-6cdb921224b6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:34.017 536789 INFO oslo_service.periodic_task [req-638c6404-9b29-43ad-8ef1-6b1f3fee2d63 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:34.022 536779 INFO oslo_service.periodic_task [req-6299e0ff-cd4c-4efd-ad95-b92ea1a94ebf - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:34.029 536759 INFO oslo_service.periodic_task [req-5c55e6d3-c376-4511-95f9-ba7cad79d5bd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:34.029 536791 INFO oslo_service.periodic_task [req-b5e6089f-8ed5-4848-b47a-fdbd97c063d9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:34.037 536737 INFO oslo_service.periodic_task [req-ea8f78ee-5402-4231-b7e1-21abe558b956 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:34.048 536795 INFO oslo_service.periodic_task [req-cb95ec28-3c8e-495c-a0a7-b55f841bae04 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:34.064 536745 INFO oslo_service.periodic_task [req-777ed577-7e81-4f07-a0b0-220b80417ec7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:34.063 536763 INFO oslo_service.periodic_task [req-bd93bf0e-5bb2-4f19-be3e-4652f64ebcc9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:34.083 536771 INFO oslo_service.periodic_task [req-b5a47a74-37b1-4fbe-9b9c-b15c58ff3726 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:34.110 536753 INFO oslo_service.periodic_task [req-753bf888-7620-4ef2-9215-3de30aa7f294 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:34.118 536803 INFO oslo_service.periodic_task [req-3ecd314f-70b6-45e7-9829-b78509597359 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:34.122 536781 INFO oslo_service.periodic_task [req-7dc78294-9f3b-4c30-8255-3368307dc873 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:34.126 536783 INFO oslo_service.periodic_task [req-eb930a47-484f-426a-a79b-3c285b52fe3d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:34.129 536787 INFO oslo_service.periodic_task [req-0dc58740-82ae-403d-8b0c-4f9d5590a325 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:34.179 536755 INFO oslo_service.periodic_task [req-4bde674f-05f8-4743-91c2-7448538d5d66 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:34.211 536751 INFO oslo_service.periodic_task [req-f03eea8f-ea02-4c71-b27b-68a6239e4cf8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:34.229 536769 INFO oslo_service.periodic_task [req-0a4ad2c0-4123-49dc-b6fe-b2f57d7df1c6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:34.231 536811 INFO oslo_service.periodic_task [req-81b6728f-93d5-4dd2-a35f-53bf263a118f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:34.240 536793 INFO oslo_service.periodic_task [req-1d9bbf2e-30fc-4c59-89a2-d8a020208974 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:34.234 536807 INFO oslo_service.periodic_task [req-8b4f9eeb-4cdf-4461-9e72-1e57b3fb22bf - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:34.244 536805 INFO oslo_service.periodic_task [req-a03cd854-d6c3-4cb1-b7d2-29e8b1b62d48 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:34.260 536757 INFO oslo_service.periodic_task [req-38cffda6-e0b5-4d45-8c8b-d6e2d3a65fc7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:53:34.326 536816 INFO oslo_service.periodic_task [req-9feabba3-e2b3-4170-8650-34a9665f71a2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
{21} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.643636s] ... ok
{24} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [1.655454s] ... ok
{14} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.455576s] ... ok
{46} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.402476s] ... ok
{16} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.407430s] ... ok
{7} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.539203s] ... ok
{22} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.469889s] ... ok
{25} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.420098s] ... ok
{18} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.587135s] ... ok
{38} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [2.509422s] ... ok
{23} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.460722s] ... ok
{45} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [2.753867s] ... ok
{24} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [1.327387s] ... ok
{13} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [3.293557s] ... ok
{26} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [3.073736s] ... ok
{21} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{19} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.702055s] ... ok
{31} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.785326s] ... ok
{20} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.871302s] ... ok
{9} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [4.352094s] ... ok
{17} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.258571s] ... ok
{52} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [4.478427s] ... ok
{8} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [5.000912s] ... ok
{44} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [4.355077s] ... ok
{10} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [4.884835s] ... ok
{33} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [4.555523s] ... ok
{48} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [4.807337s] ... ok
{30} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [4.981291s] ... ok
{32} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [4.588387s] ... ok
{47} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [4.950185s] ... ok
{27} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [4.931362s] ... ok
{11} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.430982s] ... ok
{37} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.399607s] ... ok
{6} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.702823s] ... ok
{41} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [5.311993s] ... ok
{39} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.323994s] ... ok
{42} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [5.464944s] ... ok
{4} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [5.988469s] ... ok
{3} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [6.039025s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "instances" and FROM element "security_groups". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{51} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.394386s] ... ok
{7} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.288611s] ... ok
{20} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [1.863515s] ... ok
{22} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [3.472658s] ... ok
{29} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [6.024925s] ... ok
{2} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [6.446356s] ... ok
{28} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [6.307591s] ... ok
{55} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [5.866872s] ... ok
{40} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [6.303321s] ... ok
{19} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [2.658064s] ... ok
{34} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.635900s] ... ok
{12} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [6.664998s] ... ok
{26} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.258839s] ... ok
{5} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [7.089193s] ... ok
{49} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [6.716718s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/hub.py", line 476, in fire_timers
timer()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/timer.py", line 59, in __call__
cb(*args, **kw)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/greenthread.py", line 221, in main
result = function(*args, **kwargs)
File "/home/ubuntu/nova/nova/utils.py", line 655, in context_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/tests/fixtures/nova.py", line 1661, in test_case_id_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9744, in _live_migration_operation
LOG.error("Live Migration failure: %s", e, instance=instance)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9700, in _live_migration_operation
new_xml_str = libvirt_migrate.get_updated_guest_xml(
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 66, in get_updated_guest_xml
xml_doc = _update_vif_xml(xml_doc, migrate_data, get_vif_config)
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 396, in _update_vif_xml
interface_dev.insert(index + 1, address)
TypeError: Argument 'element' has incorrect type (expected lxml.etree._Element, got NoneType)
{13} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [3.692042s] ... ok
{43} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [7.008988s] ... ok
{20} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [1.348066s] ... ok
{18} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [4.588813s] ... ok
{36} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [7.303171s] ... ok
{11} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [2.003026s] ... ok
{23} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [4.662406s] ... ok
{1} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [7.699963s] ... ok
{14} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [5.406369s] ... ok
{28} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [1.514788s] ... ok
{54} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [7.769899s] ... ok
{16} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [5.423617s] ... ok
{12} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [1.473990s] ... ok
{8} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [3.435495s] ... ok
{53} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [7.859733s] ... ok
{32} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [3.437401s] ... ok
{31} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [4.697060s] ... ok
{21} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [5.093550s] ... ok
{35} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [8.624827s] ... ok
{3} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [3.131335s] ... ok
{0} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [9.205355s] ... ok
{15} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [9.172532s] ... ok
{25} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [6.381604s] ... ok
{9} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [4.950075s] ... ok
{10} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [4.503689s] ... ok
{17} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [4.874317s] ... ok
{33} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [4.633600s] ... ok
{50} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.169708s] ... ok
{34} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [3.229654s] ... ok
{14} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [2.148267s] ... ok
{4} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.101907s] ... ok
{30} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [5.053777s] ... ok
{2} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [3.854165s] ... ok
{6} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [4.527405s] ... ok
{29} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [3.913998s] ... ok
{5} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [3.690221s] ... ok
{27} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [5.696140s] ... ok
{1} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [3.328927s] ... ok
{7} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.126894s] ... ok
{18} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [3.799930s] ... ok
{35} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [2.457048s] ... ok
{22} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [5.401128s] ... ok
{9} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [2.363916s] ... ok
{11} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [4.312829s] ... ok
{3} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [3.028104s] ... ok
{12} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [4.237030s] ... ok
{13} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [5.308998s] ... ok
{15} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [3.502126s] ... ok
{0} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [3.573865s] ... ok
{10} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [3.395516s] ... ok
{6} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [2.568908s] ... ok
{23} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [5.214869s] ... ok
{8} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [4.660306s] ... ok
{19} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.097025s] ... ok
{2} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [4.254640s] ... ok
{5} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [3.802133s] ... ok
{4} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [5.007324s] ... ok
{15} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [2.558509s] ... ok
{1} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [4.411580s] ... ok
{16} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [7.436476s] ... ok
{0} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [3.046943s] ... ok
{17} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [6.723254s] ... ok
======
Totals
======
Ran: 116 tests in 16.3357 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 520.1481 sec.
==============
Worker Balance
==============
- Worker 0 (3 tests) => 0:00:15.828729
- Worker 1 (3 tests) => 0:00:15.442578
- Worker 2 (3 tests) => 0:00:14.558519
- Worker 3 (3 tests) => 0:00:12.200994
- Worker 4 (3 tests) => 0:00:15.100241
- Worker 5 (3 tests) => 0:00:14.584554
- Worker 6 (3 tests) => 0:00:12.802244
- Worker 7 (3 tests) => 0:00:10.958094
- Worker 8 (3 tests) => 0:00:13.098645
- Worker 9 (3 tests) => 0:00:11.668905
- Worker 10 (3 tests) => 0:00:12.787488
- Worker 11 (3 tests) => 0:00:11.749394
- Worker 12 (3 tests) => 0:00:12.378379
- Worker 13 (3 tests) => 0:00:12.296628
- Worker 14 (3 tests) => 0:00:10.014039
- Worker 15 (3 tests) => 0:00:15.235216
- Worker 16 (3 tests) => 0:00:15.270424
- Worker 17 (3 tests) => 0:00:15.858112
- Worker 18 (3 tests) => 0:00:10.979954
- Worker 19 (3 tests) => 0:00:13.462759
- Worker 20 (3 tests) => 0:00:07.085396
- Worker 21 (3 tests) => 0:00:08.833550
- Worker 22 (3 tests) => 0:00:11.346224
- Worker 23 (3 tests) => 0:00:12.341442
- Worker 24 (2 tests) => 0:00:02.985567
- Worker 25 (2 tests) => 0:00:08.802932
- Worker 26 (2 tests) => 0:00:06.333478
- Worker 27 (2 tests) => 0:00:10.628772
- Worker 28 (2 tests) => 0:00:07.823231
- Worker 29 (2 tests) => 0:00:09.939709
- Worker 30 (2 tests) => 0:00:10.036988
- Worker 31 (2 tests) => 0:00:08.483658
- Worker 32 (2 tests) => 0:00:08.027122
- Worker 33 (2 tests) => 0:00:09.190329
- Worker 34 (2 tests) => 0:00:09.867210
- Worker 35 (2 tests) => 0:00:11.083578
- Worker 36 (1 tests) => 0:00:07.303171
- Worker 37 (1 tests) => 0:00:05.399607
- Worker 38 (1 tests) => 0:00:02.509422
- Worker 39 (1 tests) => 0:00:05.323994
- Worker 40 (1 tests) => 0:00:06.303321
- Worker 41 (1 tests) => 0:00:05.311993
- Worker 42 (1 tests) => 0:00:05.464944
- Worker 43 (1 tests) => 0:00:07.008988
- Worker 44 (1 tests) => 0:00:04.355077
- Worker 45 (1 tests) => 0:00:02.753867
- Worker 46 (1 tests) => 0:00:02.402476
- Worker 47 (1 tests) => 0:00:04.950185
- Worker 48 (1 tests) => 0:00:04.807337
- Worker 49 (1 tests) => 0:00:06.716718
- Worker 50 (1 tests) => 0:00:09.169708
- Worker 51 (1 tests) => 0:00:05.394386
- Worker 52 (1 tests) => 0:00:04.478427
- Worker 53 (1 tests) => 0:00:07.859733
- Worker 54 (1 tests) => 0:00:07.769899
- Worker 55 (1 tests) => 0:00:05.866872
functional-py39 run-test: commands[1] | stestr slowest
Test id Runtime (s)
------------------------------------------------------------------------------------------------------------------------------------------------------ -----------
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False 9.205
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 9.173
nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid 9.170
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False 8.625
nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute 7.860
nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 7.770
nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists 7.700
nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host 7.436
nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback 7.303
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.097
__________________________________________________________________________________ summary __________________________________________________________________________________
functional-py39: commands succeeded
congratulations :)
Tox run 1
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/easy_install.py:160: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
functional-py39 develop-inst-noop: /home/ubuntu/nova
functional-py39 installed: alembic==1.7.6,amqp==5.0.9,appdirs==1.4.4,attrs==21.4.0,automaton==2.5.0,autopage==0.5.0,bandit==1.7.4,bcrypt==3.2.0,cachetools==5.0.0,castellan==3.10.1,certifi==2021.10.8,cffi==1.15.0,charset-normalizer==2.0.12,cliff==3.10.1,cmd2==2.4.0,colorama==0.4.4,coverage==6.3.2,cryptography==36.0.1,cursive==0.2.2,ddt==1.4.4,debtcollector==2.4.0,decorator==5.1.1,dnspython==2.1.0,dogpile.cache==1.1.5,eventlet==0.33.0,extras==1.0.0,fasteners==0.17.3,fixtures==3.0.0,flake8==3.8.4,future==0.18.2,futurist==2.4.0,gabbi==2.4.0,gitdb==4.0.9,GitPython==3.1.27,greenlet==1.1.2,hacking==3.1.0,idna==3.3,iniconfig==1.1.1,iso8601==1.0.2,Jinja2==3.0.3,jmespath==0.10.0,jsonpatch==1.32,jsonpath-rw==1.4.0,jsonpath-rw-ext==1.2.2,jsonpointer==2.2,jsonschema==3.2.0,keystoneauth1==4.5.0,keystonemiddleware==9.4.0,kombu==5.2.4,lxml==4.8.0,Mako==1.1.6,MarkupSafe==2.1.1,mccabe==0.6.1,microversion-parse==1.0.1,mock==4.0.3,msgpack==1.0.3,munch==2.5.0,mypy==0.931,mypy-extensions==0.4.3,netaddr==0.8.0,netifaces==0.11.0,networkx==2.7.1,-e git+https://review.opendev.org/openstack/nova@d43538712c034023bdb3e25cd7adfdee409ed596#egg=nova,numpy==1.22.3,openstack-placement==6.0.0,openstacksdk==0.61.0,os-brick==5.2.0,os-client-config==2.1.0,os-resource-classes==1.1.0,os-service-types==1.7.0,os-traits==2.7.0,os-vif==2.7.1,os-win==5.6.0,osc-lib==2.5.0,oslo.cache==2.10.1,oslo.concurrency==4.5.0,oslo.config==8.8.0,oslo.context==4.1.0,oslo.db==11.2.0,oslo.i18n==5.1.0,oslo.log==4.7.0,oslo.messaging==12.13.0,oslo.metrics==0.4.0,oslo.middleware==4.5.1,oslo.policy==3.11.0,oslo.privsep==2.7.0,oslo.reports==2.3.0,oslo.rootwrap==6.3.1,oslo.serialization==4.3.0,oslo.service==2.8.0,oslo.upgradecheck==1.5.0,oslo.utils==4.12.2,oslo.versionedobjects==2.6.0,oslotest==4.5.0,osprofiler==3.4.2,ovs==2.16.0,ovsdbapp==1.15.1,packaging==21.3,paramiko==2.8.1,Paste==3.5.0,PasteDeploy==2.1.1,pbr==5.8.1,pluggy==1.0.0,ply==3.11,prettytable==3.2.0,prometheus-client==0.13.1,psutil==5.9.0,psycopg2-binary==2.9.3,py==1.11.0,pycadf==3.1.1,pycodestyle==2.6.0,pycparser==2.21,pydot==1.4.2,pyflakes==2.2.0,pyinotify==0.9.6,PyMySQL==1.0.2,PyNaCl==1.5.0,pyOpenSSL==22.0.0,pyparsing==3.0.7,pyperclip==1.8.2,pyroute2==0.6.6,pyroute2.core==0.6.6,pyroute2.ethtool==0.6.6,pyroute2.ipdb==0.6.6,pyroute2.ipset==0.6.6,pyroute2.ndb==0.6.6,pyroute2.nftables==0.6.6,pyroute2.nslink==0.6.6,pyrsistent==0.18.1,pytest==7.0.1,python-barbicanclient==5.3.0,python-cinderclient==8.3.0,python-dateutil==2.8.2,python-glanceclient==3.6.0,python-ironicclient==4.11.0,python-keystoneclient==4.4.0,python-neutronclient==7.8.0,python-subunit==1.4.0,pytz==2021.3,PyYAML==6.0,repoze.lru==0.7,requests==2.27.1,requests-mock==1.9.3,requestsexceptions==1.4.0,retrying==1.3.3,rfc3986==1.5.0,Routes==2.5.1,simplejson==3.17.6,six==1.16.0,smmap==5.0.0,sortedcontainers==2.4.0,SQLAlchemy==1.4.31,sqlalchemy-migrate==0.13.0,sqlparse==0.4.2,statsd==3.3.0,stestr==3.2.1,stevedore==3.5.0,taskflow==4.6.4,Tempita==0.5.2,tenacity==6.3.1,testresources==2.0.1,testscenarios==0.5.0,testtools==2.5.0,tomli==2.0.1,tooz==2.10.1,types-cryptography==3.3.15,types-enum34==1.1.8,types-ipaddress==1.0.8,types-paramiko==2.8.13,typing_extensions==4.1.1,urllib3==1.26.8,vine==5.0.0,voluptuous==0.12.2,warlock==1.3.3,wcwidth==0.2.5,WebOb==1.8.7,websockify==0.10.0,wrapt==1.13.3,wsgi-intercept==1.9.3,yappi==1.3.3
functional-py39 run-test-pre: PYTHONHASHSEED='93387634'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
2022-03-15 18:54:09.567 537422 INFO oslo_service.periodic_task [req-f03dfe4a-9763-413f-b0a2-27edd72b63e6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:09.659 537432 INFO oslo_service.periodic_task [req-fb1d4a4f-84b9-48d8-ab4e-18c4b1603c46 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:09.755 537418 INFO oslo_service.periodic_task [req-f48c9d2b-9e91-4167-8b64-8a44f0200cce - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:09.758 537428 INFO oslo_service.periodic_task [req-1725e5db-1be5-4736-be4b-34ccc37c2d29 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:09.790 537420 INFO oslo_service.periodic_task [req-61ec0e9e-05b2-46a8-b328-16ca7204029b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:09.806 537426 INFO oslo_service.periodic_task [req-a67e8780-14dc-4d3a-bfa1-97067ce5306c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:09.814 537434 INFO oslo_service.periodic_task [req-9f7d0107-0237-44ab-a68d-248dfe72abd4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:09.816 537440 INFO oslo_service.periodic_task [req-fb313498-c33e-406d-b1e2-77efed524741 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:09.877 537438 INFO oslo_service.periodic_task [req-b2d9374e-c95d-483a-ba05-443d85796705 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:09.891 537436 INFO oslo_service.periodic_task [req-83497b71-65f0-4667-8734-7d8b04434d25 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:09.902 537416 INFO oslo_service.periodic_task [req-0a37cc45-17f2-4a02-9362-23c780dcae85 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:09.912 537454 INFO oslo_service.periodic_task [req-ebeaf13c-5c64-41fe-99a8-10d59b748894 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:09.921 537502 INFO oslo_service.periodic_task [req-44289e3b-fdf9-417e-923a-aebee031a169 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:09.926 537446 INFO oslo_service.periodic_task [req-f3badf09-5980-400d-aa4a-4d1fe56a1219 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:09.927 537486 INFO oslo_service.periodic_task [req-04e285b1-a4af-47e8-b18b-08f7d6f73734 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:09.939 537474 INFO oslo_service.periodic_task [req-50d54e8b-e9ee-45d5-ad04-e9724d30049b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:09.950 537442 INFO oslo_service.periodic_task [req-8e91db2d-f599-48e2-b32a-98187057dfb2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:09.956 537450 INFO oslo_service.periodic_task [req-7a2e353e-7db6-4370-a157-80007a0733ba - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:09.993 537490 INFO oslo_service.periodic_task [req-f4affd6d-85da-4647-9be0-a25eb453050c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:09.996 537482 INFO oslo_service.periodic_task [req-4e36b0e8-5cd9-4827-a241-f5cb3ee00d02 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:09.997 537488 INFO oslo_service.periodic_task [req-f84ef356-15bf-4af1-8c6b-e59c83826efa - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.008 537464 INFO oslo_service.periodic_task [req-c5a72672-0ade-4228-a6ae-53830a3fd439 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.013 537468 INFO oslo_service.periodic_task [req-a067ca3a-be07-421d-9697-515c60c15710 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.042 537452 INFO oslo_service.periodic_task [req-9b897bdb-e37f-4d5b-847b-63f19535eda6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.046 537424 INFO oslo_service.periodic_task [req-aa6004de-b995-4b08-836c-0cdb32411d5f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.049 537466 INFO oslo_service.periodic_task [req-2e41f0e2-4013-484d-a52b-34ae5ac5982a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.051 537492 INFO oslo_service.periodic_task [req-0485bb55-c3fb-4622-8c62-a0cc68afd3ff - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.050 537476 INFO oslo_service.periodic_task [req-0fa88dd1-2b12-486e-b30b-fcb286b8e46a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.064 537522 INFO oslo_service.periodic_task [req-73164e05-8b81-414f-9e3f-9a411eebe660 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.096 537456 INFO oslo_service.periodic_task [req-e93d2dc9-ff1a-4b40-a6d7-39fadb8d2f0e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.098 537478 INFO oslo_service.periodic_task [req-1a1978ac-4e9a-4789-a598-72096385ba83 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.102 537494 INFO oslo_service.periodic_task [req-83a229d4-398d-4da0-bbae-0440e66256fa - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.106 537496 INFO oslo_service.periodic_task [req-fc5a669c-ba50-4983-a249-ce087116981c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.112 537470 INFO oslo_service.periodic_task [req-0d3daa6d-bf7b-4cb9-8ca8-ad11d899dd7b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.125 537480 INFO oslo_service.periodic_task [req-86c0c4a9-5810-4436-b142-b06a66fa5cff - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.145 537444 INFO oslo_service.periodic_task [req-aed616d1-959d-41a7-a3dc-ef9d4c1f4972 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.166 537512 INFO oslo_service.periodic_task [req-bbe4bdb9-0d45-4e31-adf9-4dce4f80e30a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.167 537462 INFO oslo_service.periodic_task [req-bd00c51d-e0fc-40bb-a308-046353e955d0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.172 537518 INFO oslo_service.periodic_task [req-9f266d77-8f7b-46d3-82e6-1451cc368a08 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.175 537508 INFO oslo_service.periodic_task [req-c7bc998d-81e0-4e8f-81f5-332a5c7c3d63 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.215 537520 INFO oslo_service.periodic_task [req-9096a3b2-5cbf-4fd4-b47b-447ca75b7a60 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.216 537527 INFO oslo_service.periodic_task [req-4fecce48-648d-478f-8f17-24035cee0d87 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.227 537472 INFO oslo_service.periodic_task [req-e4e95e6f-093c-4690-99e9-94cafed5b064 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.227 537430 INFO oslo_service.periodic_task [req-176faf57-958f-4135-9c0e-f9c2458952d8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.232 537514 INFO oslo_service.periodic_task [req-4e08ed82-568f-499f-ba13-5df09522d20d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.263 537500 INFO oslo_service.periodic_task [req-275242d8-7df4-4d69-8587-8b4e8868ceb9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.279 537458 INFO oslo_service.periodic_task [req-02ffc047-6338-4e3b-9c14-90c13fdc59cd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.280 537448 INFO oslo_service.periodic_task [req-81f9467e-ca4f-40e8-b7e3-76d50748f784 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.284 537498 INFO oslo_service.periodic_task [req-318b78ea-cb94-4a89-b009-c01170a30937 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.303 537510 INFO oslo_service.periodic_task [req-89731be8-3cae-4487-a54a-334b6d21926e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.308 537504 INFO oslo_service.periodic_task [req-e5ef0161-bce9-4e9b-8f14-f3f6af5d2ae4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.317 537506 INFO oslo_service.periodic_task [req-dd51d3f9-867c-44e3-b041-96034cd354f6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.353 537460 INFO oslo_service.periodic_task [req-ccc19dee-e3e9-4998-9f4f-e5f637852e79 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.352 537484 INFO oslo_service.periodic_task [req-9b9af87e-1cad-4625-9eaf-5a299e1ec47c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.455 537516 INFO oslo_service.periodic_task [req-aaab89b5-ae39-4aba-9fb8-114cb781abf6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:10.460 537524 INFO oslo_service.periodic_task [req-bd3ded6c-dd7b-4423-8df4-b5b58fa96b2d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
{26} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.659320s] ... ok
{27} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [1.675305s] ... ok
{8} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.353244s] ... ok
{12} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.365437s] ... ok
{9} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.420795s] ... ok
{10} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.446792s] ... ok
{15} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.426773s] ... ok
{13} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.402917s] ... ok
{7} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.362409s] ... ok
{18} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.563922s] ... ok
{3} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.447720s] ... ok
{4} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{23} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [3.160381s] ... ok
{38} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.609669s] ... ok
{43} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.905487s] ... ok
{39} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.909650s] ... ok
{28} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [4.066657s] ... ok
{48} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.098386s] ... ok
{19} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [4.512320s] ... ok
{51} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [4.407529s] ... ok
{55} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [4.681321s] ... ok
{38} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [1.257590s] ... ok
{50} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [4.499197s] ... ok
{46} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [4.946073s] ... ok
{37} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [5.209267s] ... ok
{41} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [4.902852s] ... ok
{21} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [5.029411s] ... ok
{31} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.251450s] ... ok
{42} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.081153s] ... ok
{33} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.435943s] ... ok
{45} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [5.124714s] ... ok
{25} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [5.481635s] ... ok
{32} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.481054s] ... ok
{24} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.664349s] ... ok
{28} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [1.580051s] ... ok
{27} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [4.116685s] ... ok
{29} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [6.174473s] ... ok
{20} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [6.129763s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "instances" and FROM element "security_groups". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{22} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [5.981866s] ... ok
{34} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [5.983253s] ... ok
{54} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [5.921251s] ... ok
{16} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [6.106400s] ... ok
{11} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [6.537356s] ... ok
{26} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [4.809746s] ... ok
{5} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [6.941009s] ... ok
{52} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [6.565195s] ... ok
{14} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [6.677646s] ... ok
{8} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [4.833428s] ... ok
{18} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [4.231961s] ... ok
{53} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [6.781984s] ... ok
{40} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [6.871796s] ... ok
{44} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [6.798216s] ... ok
{15} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [4.798069s] ... ok
{6} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [7.437503s] ... ok
{14} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.381708s] ... ok
{43} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [3.467564s] ... ok
{23} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [3.989246s] ... ok
{48} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [3.117292s] ... ok
{47} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [7.113272s] ... ok
{49} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [7.202465s] ... ok
{13} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [5.204885s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/hub.py", line 476, in fire_timers
timer()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/timer.py", line 59, in __call__
cb(*args, **kw)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/greenthread.py", line 221, in main
result = function(*args, **kwargs)
File "/home/ubuntu/nova/nova/utils.py", line 655, in context_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/tests/fixtures/nova.py", line 1661, in test_case_id_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9744, in _live_migration_operation
LOG.error("Live Migration failure: %s", e, instance=instance)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9700, in _live_migration_operation
new_xml_str = libvirt_migrate.get_updated_guest_xml(
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 66, in get_updated_guest_xml
xml_doc = _update_vif_xml(xml_doc, migrate_data, get_vif_config)
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 396, in _update_vif_xml
interface_dev.insert(index + 1, address)
TypeError: Argument 'element' has incorrect type (expected lxml.etree._Element, got NoneType)
{10} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [5.253452s] ... ok
{30} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [7.709303s] ... ok
{17} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [7.844194s] ... ok
{39} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [4.174796s] ... ok
{36} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [8.279417s] ... ok
{19} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [4.258500s] ... ok
{20} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [2.457454s] ... ok
{1} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [9.118638s] ... ok
{31} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [3.545227s] ... ok
{12} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [6.877820s] ... ok
{27} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.244856s] ... ok
{21} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [3.883892s] ... ok
{33} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [3.807424s] ... ok
{54} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [2.858416s] ... ok
{20} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [0.607535s] ... ok
{55} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [4.428142s] ... ok
{2} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.559201s] ... ok
{35} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [9.436137s] ... ok
{4} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [6.123056s] ... ok
{45} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.021671s] ... ok
{24} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [3.842334s] ... ok
{5} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [2.834846s] ... ok
{7} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [7.095700s] ... ok
{53} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [2.846290s] ... ok
{41} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.497008s] ... ok
{11} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [3.347118s] ... ok
{32} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [4.160872s] ... ok
{34} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.452055s] ... ok
{0} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [9.896884s] ... ok
{50} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [4.887786s] ... ok
{38} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [4.989456s] ... ok
{9} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.674535s] ... ok
{42} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [4.718280s] ... ok
{3} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.240041s] ... ok
{37} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.262570s] ... FAILED
Captured traceback:
~~~~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/nova/tests/functional/regressions/test_bug_1944619.py", line 87, in test_rollback_pre_live_migration
self.libvirt_mock.mock.assert_called_once()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 891, in assert_called_once
raise AssertionError(msg)
AssertionError: Expected 'rollback_live_migration_at_source' to have been called once. Called 0 times.
Captured pythonlogging:
~~~~~~~~~~~~~~~~~~~~~~
2022-03-15 18:54:15,940 WARNING [oslo_policy.policy] JSON formatted policy_file support is deprecated since Victoria release. You need to use YAML format which will be default in future. You can use ``oslopolicy-convert-json-to-yaml`` tool to convert existing JSON-formatted policy file to YAML-formatted in backward compatible way: https://docs.openstack.org/oslo.policy/latest/cli/oslopolicy-convert-json-to-yaml.html.
2022-03-15 18:54:15,942 WARNING [oslo_policy.policy] JSON formatted policy_file support is deprecated since Victoria release. You need to use YAML format which will be default in future. You can use ``oslopolicy-convert-json-to-yaml`` tool to convert existing JSON-formatted policy file to YAML-formatted in backward compatible way: https://docs.openstack.org/oslo.policy/latest/cli/oslopolicy-convert-json-to-yaml.html.
2022-03-15 18:54:15,945 WARNING [oslo_policy.policy] Policy Rules ['os_compute_api:extensions', 'os_compute_api:os-floating-ip-pools', 'os_compute_api:os-quota-sets:defaults', 'os_compute_api:os-availability-zone:list', 'os_compute_api:limits', 'system_admin_api', 'system_reader_api', 'project_admin_api', 'project_member_api', 'project_reader_api', 'system_admin_or_owner', 'system_or_project_reader', 'os_compute_api:limits:other_project', 'os_compute_api:os-lock-server:unlock:unlock_override', 'os_compute_api:servers:create:zero_disk_flavor', 'compute:servers:resize:cross_cell'] specified in policy files are the same as the defaults provided by the service. You can remove these rules from policy files which will make maintenance easier. You can detect these redundant rules by ``oslopolicy-list-redundant`` tool also.
2022-03-15 18:54:15,951 WARNING [placement.db_api] TransactionFactory already started, not reconfiguring.
2022-03-15 18:54:16,063 INFO [nova.service] Starting conductor node (version 24.1.0)
2022-03-15 18:54:16,469 INFO [nova.service] Starting scheduler node (version 24.1.0)
2022-03-15 18:54:17,820 INFO [os_vif] Loaded VIF plugins: linux_bridge, noop, ovs
2022-03-15 18:54:17,866 INFO [nova.virt.driver] Loading compute driver 'libvirt.LibvirtDriver'
2022-03-15 18:54:17,869 INFO [nova.compute.provider_config] No provider configs found in /etc/nova/provider_config/. If files are present, ensure the Nova process has access.
2022-03-15 18:54:17,880 INFO [nova.service] Starting compute node (version 24.1.0)
2022-03-15 18:54:17,898 INFO [nova.virt.libvirt.host] Secure Boot support detected
2022-03-15 18:54:17,901 WARNING [nova.virt.libvirt.driver] my_ip address (10.230.62.178) was not found on any of the interfaces:
2022-03-15 18:54:17,901 WARNING [nova.virt.libvirt.driver] Running Nova with a libvirt version less than 7.0.0 is deprecated. The required minimum version of libvirt will be raised to 7.0.0 in the next release.
2022-03-15 18:54:17,901 WARNING [nova.virt.libvirt.driver] Running Nova with a QEMU version less than 5.2.0 is deprecated. The required minimum version of QEMU will be raised to 5.2.0 in the next release.
2022-03-15 18:54:17,949 WARNING [nova.compute.manager] Compute node src not found in the database. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 18:54:17,957 INFO [nova.compute.manager] Looking for unclaimed instances stuck in BUILDING status for nodes managed by this host
2022-03-15 18:54:17,975 WARNING [nova.compute.manager] No compute node record found for host src. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 18:54:17,983 WARNING [nova.compute.resource_tracker] No compute node record for src:src
2022-03-15 18:54:17,990 INFO [nova.compute.resource_tracker] Compute node record created for src:src with uuid: b9bbffb2-d2ed-451a-a043-dacb50a83731
2022-03-15 18:54:18,060 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?in_tree=b9bbffb2-d2ed-451a-a043-dacb50a83731" status: 200 len: 26 microversion: 1.14
2022-03-15 18:54:18,075 INFO [placement.requestlog] 127.0.0.1 "POST /placement/resource_providers" status: 200 len: 826 m
icroversion: 1.20
2022-03-15 18:54:18,076 INFO [nova.scheduler.client.report] [req-f6eef2bb-b650-4f1f-bfb9-7c27b4d26ae5] Created resource provider record via placement API for resource provider with UUID b9bbffb2-d2ed-451a-a043-dacb50a83731 and name src.
2022-03-15 18:54:18,077 INFO [nova.virt.libvirt.host] kernel doesn't support AMD SEV
2022-03-15 18:54:18,113 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/b9bbffb2-d2ed-451a-a043-dacb50a83731/inventories" status: 200 len: 407 microversion: 1.26
2022-03-15 18:54:18,132 INFO [placement.requestlog] 127.0.0.1 "GET /placement/traits?name=in:COMPUTE_GRAPHICS_MODEL_VMVGA,COMPUTE_STORAGE_BUS_FDC,COMPUTE_NET_VIF_MODEL_VIRTIO,COMPUTE_IMAGE_TYPE_RAW,COMPUTE_DEVICE_TAGGING,COMPUTE_NET_VIF_MODEL_SPAPR_VLAN,COMPUTE_NET_ATTACH_INTERFACE_WITH_TAG,COMPUTE_STORAGE_BUS_USB,COMPUTE_VOLUME_MULTI_ATTACH,COMPUTE_NET_VIF_MODEL_PCNET,COMPUTE_NET_VIF_MODEL_NE2K_PCI,COMPUTE_GRAPHICS_MODEL_CIRRUS,COMPUTE_STORAGE_BUS_SCSI,HW_CPU_X86_VMX,COMPUTE_STORAGE_BUS_SATA,COMPUTE_NET_VIF_MODEL_VMXNET3,COMPUTE_VOLUME_ATTACH_WITH_TAG,COMPUTE_VOLUME_EXTEND,COMPUTE_IMAGE_TYPE_AMI,COMPUTE_GRAPHICS_MODEL_VIRTIO,COMPUTE_IMAGE_TYPE_ISO,COMPUTE_NODE,COMPUTE_GRAPHICS_MODEL_BOCHS,COMPUTE_STORAGE_BUS_IDE,COMPUTE_SOCKET_PCI_NUMA_AFFINITY,HW_CPU_X86_INTEL_VMX,COMPUTE_IMAGE_TYPE_ARI,COMPUTE_GRAPHICS_MODEL_VGA,COMPUTE_NET_VIF_MODEL_E1000E,COMPUTE_NET_ATTACH_INTERFACE,COMPUTE_NET_VIF_MODEL_E1000,COMPUTE_GRAPHICS_MODEL_QXL,COMPUTE_IMAGE_TYPE_QCOW2,COMPUTE_TRUSTED_CERTS,COMPUTE_STORAGE_BUS_VIRTIO,COMPUTE_SECURITY_UEFI_SECURE_BOOT,HW_CPU_X86_AESNI,COMPUTE_IMAGE_TYPE_AKI,COMPUTE_NET_VIF_MODEL_RTL8139,COMPUTE_GRAPHICS_MODEL_NONE,COMPUTE_ACCELERATORS,COMPUTE_RESCUE_BFV" status: 200 len: 1231 microversion: 1.6
2022-03-15 18:54:18,174 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/b9bbffb2-d2ed-451a-a043-dacb50a83731/traits" status: 200 len: 1266 microversion: 1.6
2022-03-15 18:54:18,190 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?name=src" status: 200 len: 430 microversion: 1.0
2022-03-15 18:54:18,205 INFO [nova.virt.driver] Loading compute driver 'libvirt.LibvirtDriver'
2022-03-15 18:54:18,206 INFO [nova.compute.provider_config] No provider configs found in /etc/nova/provider_config/. If files are present, ensure the Nova process has access.
2022-03-15 18:54:18,212 INFO [nova.service] Starting compute node (version 24.1.0)
2022-03-15 18:54:18,222 INFO [nova.virt.libvirt.host] Secure Boot support detected
2022-03-15 18:54:18,222 WARNING [nova.virt.libvirt.driver] my_ip address (10.230.62.178) was not found on any of the interfaces:
2022-03-15 18:54:18,223 WARNING [nova.virt.libvirt.driver] Running Nova with a libvirt version less than 7.0.0 is deprecated. The required minimum version of libvirt will be raised to 7.0.0 in the next release.
2022-03-15 18:54:18,223 WARNING [nova.virt.libvirt.driver] Running Nova with a QEMU version less than 5.2.0 is deprecated. The required minimum version of QEMU will be raised to 5.2.0 in the next release.
2022-03-15 18:54:18,231 WARNING [nova.compute.manager] Compute node dest not found in the database. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 18:54:18,233 INFO [nova.compute.manager] Looking for unclaimed instances stuck in BUILDING status for nodes managed by this host
2022-03-15 18:54:18,241 WARNING [nova.compute.manager] No compute node record found for host dest. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 18:54:18,246 WARNING [nova.compute.resource_tracker] No compute node record for dest:dest
2022-03-15 18:54:18,251 INFO [nova.compute.resource_tracker] Compute node record created for dest:dest with uuid: 5bc15b73-4cf8-4a58-85ef-4e98d2f0ba6d
2022-03-15 18:54:18,278 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?in_tree=5bc15b73-4cf8-4a58-85ef-4e98d2f0ba6d" status: 200 len: 26 microversion: 1.14
2022-03-15 18:54:18,285 INFO [placement.requestlog] 127.0.0.1
"POST /placement/resource_providers" status: 200 len: 827 microversion: 1.20
2022-03-15 18:54:18,286 INFO [nova.scheduler.client.report] [req-7bd38941-c654-4f74-b4d3-cf29eea74529] Created resource provider record via placement API for resource provider with UUID 5bc15b73-4cf8-4a58-85ef-4e98d2f0ba6d and name dest.
2022-03-15 18:54:18,287 INFO [nova.virt.libvirt.host] kernel doesn't support AMD SEV
2022-03-15 18:54:18,305 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/5bc15b73-4cf8-4a58-85ef-4e98d2f0ba6d/inventories" status: 200 len: 407 microversion: 1.26
2022-03-15 18:54:18,316 INFO [placement.requestlog] 127.0.0.1 "GET /placement/traits?name=in:COMPUTE_GRAPHICS_MODEL_VMVGA,COMPUTE_STORAGE_BUS_FDC,COMPUTE_NET_VIF_MODEL_VIRTIO,COMPUTE_IMAGE_TYPE_RAW,COMPUTE_DEVICE_TAGGING,COMPUTE_NET_VIF_MODEL_SPAPR_VLAN,COMPUTE_NET_ATTACH_INTERFACE_WITH_TAG,COMPUTE_STORAGE_BUS_USB,COMPUTE_VOLUME_MULTI_ATTACH,COMPUTE_NET_VIF_MODEL_PCNET,COMPUTE_NET_VIF_MODEL_NE2K_PCI,COMPUTE_GRAPHICS_MODEL_CIRRUS,COMPUTE_STORAGE_BUS_SCSI,HW_CPU_X86_VMX,COMPUTE_STORAGE_BUS_SATA,COMPUTE_NET_VIF_MODEL_VMXNET3,COMPUTE_VOLUME_ATTACH_WITH_TAG,COMPUTE_VOLUME_EXTEND,COMPUTE_IMAGE_TYPE_AMI,COMPUTE_GRAPHICS_MODEL_VIRTIO,COMPUTE_IMAGE_TYPE_ISO,COMPUTE_NODE,COMPUTE_GRAPHICS_MODEL_BOCHS,COMPUTE_STORAGE_BUS_IDE,COMPUTE_SOCKET_PCI_NUMA_AFFINITY,HW_CPU_X86_INTEL_VMX,COMPUTE_IMAGE_TYPE_ARI,COMPUTE_GRAPHICS_MODEL_VGA,COMPUTE_NET_VIF_MODEL_E1000E,COMPUTE_NET_ATTACH_INTERFACE,COMPUTE_NET_VIF_MODEL_E1000,COMPUTE_GRAPHICS_MODEL_QXL,COMPUTE_IMAGE_TYPE_QCOW2,COMPUTE_TRUSTED_CERTS,COMPUTE_STORAGE_BUS_VIRTIO,COMPUTE_SECURITY_UEFI_SECURE_BOOT,HW_CPU_X86_AESNI,COMPUTE_IMAGE_TYPE_AKI,COMPUTE_NET_VIF_MODEL_RTL8139,COMPUTE_GRAPHICS_MODEL_NONE,COMPUTE_ACCELERATORS,COMPUTE_RESCUE_BFV" status: 200 len: 1231 microversion: 1.6
2022-03-15 18:54:18,342 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/5bc15b73-4cf8-4a58-85ef-4e98d2f0ba6d/traits" status: 200 len: 1266 microversion: 1.6
2022-03-15 18:54:18,352 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?name=dest" status: 200 len: 431 microversion: 1.0
2022-03-15 18:54:18,367 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/images/detail" status: 200 len: 5173 microversion: 2.35 time: 0.010859
2022-03-15 18:54:18,384 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/flavors/detail" status: 200 len: 2605 microversion: 2.90 time: 0.013790
2022-03-15 18:54:19,011 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocation_candidates?in_tree=b9bbffb2-d2ed-451a-a043-dacb50a83731&limit=1000&resources=DISK_GB%3A1%2CMEMORY_MB%3A512%2CVCPU%3A1&root_required=%21COMPUTE_STATUS_DISABLED" status: 200 len: 1735 microversion: 1.36
2022-03-15 18:54:19,040 INFO [nova.scheduler.host_manager] Host filter only checking host src and node src
2022-03-15 18:54:19,055 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/31bb655a-ff65-49fc-81b4-f04843e2012c" status: 200 len: 19 microversion: 1.28
2022-03-15 18:54:19,106 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/allocations/31bb655a-ff65-49fc-81b4-f04843e2012c" status: 204 len: 0 microversion: 1.36
2022-03-15 18:54:19,303 INFO [nova.api.openstack.requestlog] 127.0.0.1 "POST /v2.1/servers" status: 202 len: 414 microversion: 2.90 time: 0.916286
2022-03-15 18:54:19,402 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/31bb655a-ff65-49fc-81b4-f04843e2012c" status: 200 len: 230 microversion: 1.28
2022-03-15 18:54:19,405 INFO [nova.compute.claims] Claim successful on node src
2022-03-15 18:54:19,439 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/31bb655a-ff65-49fc-81b4-f04843e2012c" status: 200 len: 1779 microversion: 2.90 time: 0.132163
2022-03-15 18:54:19,575 INFO [nova.virt.libvirt.driver] Instance spawned successfully.
2022-03-15 18:54:19,576 INFO [nova.compute.manager] Took 0.06 seconds to spawn the instance on the hypervisor.
2022-03-15 18:54:19,622 INFO [nova.scheduler.host_manager] Received an update from an unknown host 'src'. Re-created its InstanceList.
202
2-03-15 18:54:19,626 INFO [nova.compute.manager] Took 0.27 seconds to build instance.
2022-03-15 18:54:20,029 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/31bb655a-ff65-49fc-81b4-f04843e2012c" status: 200 len: 1868 microversion: 2.90 time: 0.084461
2022-03-15 18:54:20,232 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/31bb655a-ff65-49fc-81b4-f04843e2012c" status: 200 len: 230 microversion: 1.28
2022-03-15 18:54:20,243 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/31bb655a-ff65-49fc-81b4-f04843e2012c" status: 200 len: 230 microversion: 1.28
2022-03-15 18:54:20,251 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/c2cd215d-3a11-473e-b462-6a2e2b4ac9fd" status: 200 len: 19 microversion: 1.28
2022-03-15 18:54:20,284 INFO [placement.requestlog] 127.0.0.1 "POST /placement/allocations" status: 204 len: 0 microversion: 1.28
2022-03-15 18:54:20,347 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocation_candidates?limit=1000&resources=DISK_GB%3A1%2CMEMORY_MB%3A512%2CVCPU%3A1&root_required=%21COMPUTE_STATUS_DISABLED" status: 200 len: 3423 microversion: 1.36
2022-03-15 18:54:20,371 INFO [nova.scheduler.host_manager] Host filter ignoring hosts: src
2022-03-15 18:54:20,378 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/31bb655a-ff65-49fc-81b4-f04843e2012c" status: 200 len: 19 microversion: 1.28
2022-03-15 18:54:20,409 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/allocations/31bb655a-ff65-49fc-81b4-f04843e2012c" status: 204 len: 0 microversion: 1.36
2022-03-15 18:54:20,502 INFO [nova.virt.libvirt.driver] Instance launched has CPU info: {"arch": "x86_64", "model": "Penryn", "vendor": "Intel", "topology": {"cells": 1, "sockets": 1, "cores": 4, "threads": 1}, "features": ["est", "monitor", "ds", "acpi", "vmx", "xtpr", "ht", "aes", "tm", "pbe", "tm2", "vme", "ds_cpl", "ss"]}
2022-03-15 18:54:20,518 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/31bb655a-ff65-49fc-81b4-f04843e2012c" status: 200 len: 230 microversion: 1.28
2022-03-15 18:54:20,626 INFO [nova.api.openstack.requestlog] 127.0.0.1 "POST /v2.1/servers/31bb655a-ff65-49fc-81b4-f04843e2012c/action" status: 202 len: 0 microversion: 2.90 time: 0.592013
2022-03-15 18:54:20,715 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/31bb655a-ff65-49fc-81b4-f04843e2012c" status: 200 len: 1878 microversion: 2.90 time: 0.081621
2022-03-15 18:54:20,736 ERROR [oslo_messaging.rpc.server] Exception during message handling
Traceback (most recent call last):
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/server.py", line 165, in _process_incoming
res = self.dispatcher.dispatch(message)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 309, in dispatch
return self._do_dispatch(endpoint, method, ctxt, args)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 229, in _do_dispatch
result = func(ctxt, **new_args)
File "/home/ubuntu/nova/nova/exception_wrapper.py", line 71, in wrapped
_emit_versioned_exception_notification(
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/exception_wrapper.py", line 63, in wrapped
return f(self, context, *args, **kw)
File "/home/ubuntu/nova/nova/compute/utils.py", line 1437, in decorated_function
return function(self, context, *args, **kwargs)
File "/home/ubuntu/nova/nova/compute/manager.py", line 211, in decorated_function
compute_utils.add_instance_fault_from_exc(context,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/func
tional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/compute/manager.py", line 200, in decorated_function
return function(self, context, *args, **kwargs)
File "/home/ubuntu/nova/nova/compute/manager.py", line 8263, in pre_live_migration
bdm.save()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/compute/manager.py", line 8219, in pre_live_migration
migrate_data = self.driver.pre_live_migration(context,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1100, in __call__
return _mock_self._mock_call(*args, **kwargs)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1104, in _mock_call
return _mock_self._execute_mock_call(*args, **kwargs)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1161, in _execute_mock_call
raise effect
nova.exception.DestinationDiskExists: The supplied disk path (/var/non/existent) already exists, it is expected not to exist.
2022-03-15 18:54:20,744 ERROR [nova.compute.manager] Pre live migration failed at dest
Traceback (most recent call last):
File "/home/ubuntu/nova/nova/compute/manager.py", line 8394, in _do_pre_live_migration_from_source
migrate_data = self.compute_rpcapi.pre_live_migration(
File "/home/ubuntu/nova/nova/compute/rpcapi.py", line 944, in pre_live_migration
return cctxt.call(ctxt, 'pre_live_migration',
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/client.py", line 189, in call
result = self.transport._send(
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/transport.py", line 123, in _send
return self._driver.send(target, ctxt, message,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/_drivers/impl_fake.py", line 222, in send
return self._send(target, ctxt, message, wait_for_reply, timeout,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/_drivers/impl_fake.py", line 209, in _send
raise failure
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/server.py", line 165, in _process_incoming
res = self.dispatcher.dispatch(message)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 309, in dispatch
return self._do_dispatch(endpoint, method, ctxt, args)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 229, in _do_dispatch
result = func(ctxt, **new_args)
File "/home/ubuntu/nova/nova/exception_wrapper.py", line 71, in wrapped
_emit_versioned_exception_notification(
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/exception_wrapper.py", line 63, in wrapped
return f(self, context, *args, **kw)
File "/home/ubuntu/nova/nova/compute/utils.py", line 1437, in decorated_function
return function(self, context, *args, **kwargs)
File "/home/ubuntu/nova/nova/compute/manager.py", line 211, in decorated_function
compute_utils.add_instance_fault_from_exc(context,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200,
in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/compute/manager.py", line 200, in decorated_function
return function(self, context, *args, **kwargs)
File "/home/ubuntu/nova/nova/compute/manager.py", line 8263, in pre_live_migration
bdm.save()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/compute/manager.py", line 8219, in pre_live_migration
migrate_data = self.driver.pre_live_migration(context,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1100, in __call__
return _mock_self._mock_call(*args, **kwargs)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1104, in _mock_call
return _mock_self._execute_mock_call(*args, **kwargs)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1161, in _execute_mock_call
raise effect
nova.exception.DestinationDiskExists: The supplied disk path (/var/non/existent) already exists, it is expected not to exist.
2022-03-15 18:54:20,772 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/os-migrations" status: 200 len: 510 microversion: 2.90 time: 0.053810
2022-03-15 18:54:20,776 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/c2cd215d-3a11-473e-b462-6a2e2b4ac9fd" status: 200 len: 230 microversion: 1.28
2022-03-15 18:54:20,777 INFO [nova.compute.manager] Swapping old allocation on dict_keys(['b9bbffb2-d2ed-451a-a043-dacb50a83731']) held by migration c2cd215d-3a11-473e-b462-6a2e2b4ac9fd for instance
2022-03-15 18:54:20,786 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/c2cd215d-3a11-473e-b462-6a2e2b4ac9fd" status: 200 len: 230 microversion: 1.28
2022-03-15 18:54:20,795 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/31bb655a-ff65-49fc-81b4-f04843e2012c" status: 200 len: 230 microversion: 1.28
2022-03-15 18:54:20,838 INFO [placement.requestlog] 127.0.0.1 "POST /placement/allocations" status: 204 len: 0 microversion: 1.28
2022-03-15 18:54:20,876 WARNING [nova.compute.manager] Unable to cancel live migration.
{26} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [4.039255s] ... ok
{46} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [5.599902s] ... ok
{22} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [4.381978s] ... ok
{16} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [4.373723s] ... ok
{6} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [3.604776s] ... ok
{51} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [6.268808s] ... ok
{29} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [5.030452s] ... ok
{17} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.407624s] ... ok
{28} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [5.398216s] ... ok
{52} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [4.564712s] ... ok
{30} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [3.624668s] ... ok
{36} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [3.516976s] ... ok
{25} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [6.296379s] ... ok
{30} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.588811s] ... ok
{49} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [4.543284s] ... ok
{47} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [4.656141s] ... ok
{44} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [5.068566s] ... ok
{29} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [1.587114s] ... ok
{40} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [5.975058s] ... ok
{35} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [3.983904s] ... ok
==============================
Failed 1 tests - output below:
==============================
nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration
------------------------------------------------------------------------------------------------------------------
Captured traceback:
~~~~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/nova/tests/functional/regressions/test_bug_1944619.py", line 87, in test_rollback_pre_live_migration
self.libvirt_mock.mock.assert_called_once()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 891, in assert_called_once
raise AssertionError(msg)
AssertionError: Expected 'rollback_live_migration_at_source' to have been called once. Called 0 times.
Captured pythonlogging:
~~~~~~~~~~~~~~~~~~~~~~
2022-03-15 18:54:15,940 WARNING [oslo_policy.policy] JSON formatted policy_file support is deprecated since Victoria release. You need to use YAML format which will be default in future. You can use ``oslopolicy-convert-json-to-yaml`` tool to convert existing JSON-formatted policy file to YAML-formatted in backward compatible way: https://docs.openstack.org/oslo.policy/latest/cli/oslopolicy-convert-json-to-yaml.html.
2022-03-15 18:54:15,942 WARNING [oslo_policy.policy] JSON formatted policy_file support is deprecated since Victoria release. You need to use YAML format which will be default in future. You can use ``oslopolicy-convert-json-to-yaml`` tool to convert existing JSON-formatted policy file to YAML-formatted in backward compatible way: https://docs.openstack.org/oslo.policy/latest/cli/oslopolicy-convert-json-to-yaml.html.
2022-03-15 18:54:15,945 WARNING [oslo_policy.policy] Policy Rules ['os_compute_api:extensions', 'os_compute_api:os-floating-ip-pools', 'os_compute_api:os-quota-sets:defaults', 'os_compute_api:os-availability-zone:list', 'os_compute_api:limits', 'system_admin_api', 'system_reader_api', 'project_admin_api', 'project_member_api', 'project_reader_api', 'system_admin_or_owner', 'system_or_project_reader', 'os_compute_api:limits:other_project', 'os_compute_api:os-lock-server:unlock:unlock_override', 'os_compute_api:servers:create:zero_disk_flavor', 'compute:servers:resize:cross_cell'] specified in policy files are the same as the defaults provided by the service. You can remove these rules from policy files which will make maintenance easier. You can detect these redundant rules by ``oslopolicy-list-redundant`` tool also.
2022-03-15 18:54:15,951 WARNING [placement.db_api] TransactionFactory already started, not reconfiguring.
2022-03-15 18:54:16,063 INFO [nova.service] Starting conductor node (version 24.1.0)
2022-03-15 18:54:16,469 INFO [nova.service] Starting scheduler node (version 24.1.0)
2022-03-15 18:54:17,820 INFO [os_vif] Loaded VIF plugins: linux_bridge, noop, ovs
2022-03-15 18:54:17,866 INFO [nova.virt.driver] Loading compute driver 'libvirt.LibvirtDriver'
2022-03-15 18:54:17,869 INFO [nova.compute.provider_config] No provider configs found in /etc/nova/provider_config/. If files are present, ensure the Nova process has access.
2022-03-15 18:54:17,880 INFO [nova.service] Starting compute node (version 24.1.0)
2022-03-15 18:54:17,898 INFO [nova.virt.libvirt.host] Secure Boot support detected
2022-03-15 18:54:17,901 WARNING [nova.virt.libvirt.driver] my_ip address (10.230.62.178) was not found on any of the interfaces:
2022-03-15 18:54:17,901 WARNING [nova.virt.libvirt.driver] Running Nova with a libvirt version less than 7.0.0 is deprecated. The required minimum version of libvirt will be raised to 7.0.0 in the next release.
2022-03-15 18:54:17,901 WARNING [nova.virt.libvirt.driver] Running Nova with a QEMU version less than 5.2.0 is deprecated. The required minimum version of QEMU will be raised to 5.2.0 in the next release.
2022-03-15 18:54:17,949 WARNING [nova.compute.manager] Compute node src not found in the database. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 18:54:17,957 INFO [nova.compute.manager] Looking for unclaimed instances stuck in BUILDING status for nodes managed by this host
2022-03-15 18:54:17,975 WARNING [nova.compute.manager] No compute node record found for host src. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 18:54:17,983 WARNING [nova.compute.resource_tracker] No compute node record for src:src
2022-03-15 18:54:17,990 INFO [nova.compute.resource_tracker] Compute node record created for src:src with uuid: b9bbffb2-d2ed-451a-a043-dacb50a83731
2022-03-15 18:54:18,060 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?in_tree=b9bbffb2-d2ed-451a-a043-dacb50a83731" status: 200 len: 26 microversion: 1.14
2022-03-15 18:54:18,075 INFO [placement.requestlog] 127.0.0.1 "POST /placement/resource_providers" status: 200 len: 826 m
icroversion: 1.20
2022-03-15 18:54:18,076 INFO [nova.scheduler.client.report] [req-f6eef2bb-b650-4f1f-bfb9-7c27b4d26ae5] Created resource provider record via placement API for resource provider with UUID b9bbffb2-d2ed-451a-a043-dacb50a83731 and name src.
2022-03-15 18:54:18,077 INFO [nova.virt.libvirt.host] kernel doesn't support AMD SEV
2022-03-15 18:54:18,113 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/b9bbffb2-d2ed-451a-a043-dacb50a83731/inventories" status: 200 len: 407 microversion: 1.26
2022-03-15 18:54:18,132 INFO [placement.requestlog] 127.0.0.1 "GET /placement/traits?name=in:COMPUTE_GRAPHICS_MODEL_VMVGA,COMPUTE_STORAGE_BUS_FDC,COMPUTE_NET_VIF_MODEL_VIRTIO,COMPUTE_IMAGE_TYPE_RAW,COMPUTE_DEVICE_TAGGING,COMPUTE_NET_VIF_MODEL_SPAPR_VLAN,COMPUTE_NET_ATTACH_INTERFACE_WITH_TAG,COMPUTE_STORAGE_BUS_USB,COMPUTE_VOLUME_MULTI_ATTACH,COMPUTE_NET_VIF_MODEL_PCNET,COMPUTE_NET_VIF_MODEL_NE2K_PCI,COMPUTE_GRAPHICS_MODEL_CIRRUS,COMPUTE_STORAGE_BUS_SCSI,HW_CPU_X86_VMX,COMPUTE_STORAGE_BUS_SATA,COMPUTE_NET_VIF_MODEL_VMXNET3,COMPUTE_VOLUME_ATTACH_WITH_TAG,COMPUTE_VOLUME_EXTEND,COMPUTE_IMAGE_TYPE_AMI,COMPUTE_GRAPHICS_MODEL_VIRTIO,COMPUTE_IMAGE_TYPE_ISO,COMPUTE_NODE,COMPUTE_GRAPHICS_MODEL_BOCHS,COMPUTE_STORAGE_BUS_IDE,COMPUTE_SOCKET_PCI_NUMA_AFFINITY,HW_CPU_X86_INTEL_VMX,COMPUTE_IMAGE_TYPE_ARI,COMPUTE_GRAPHICS_MODEL_VGA,COMPUTE_NET_VIF_MODEL_E1000E,COMPUTE_NET_ATTACH_INTERFACE,COMPUTE_NET_VIF_MODEL_E1000,COMPUTE_GRAPHICS_MODEL_QXL,COMPUTE_IMAGE_TYPE_QCOW2,COMPUTE_TRUSTED_CERTS,COMPUTE_STORAGE_BUS_VIRTIO,COMPUTE_SECURITY_UEFI_SECURE_BOOT,HW_CPU_X86_AESNI,COMPUTE_IMAGE_TYPE_AKI,COMPUTE_NET_VIF_MODEL_RTL8139,COMPUTE_GRAPHICS_MODEL_NONE,COMPUTE_ACCELERATORS,COMPUTE_RESCUE_BFV" status: 200 len: 1231 microversion: 1.6
2022-03-15 18:54:18,174 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/b9bbffb2-d2ed-451a-a043-dacb50a83731/traits" status: 200 len: 1266 microversion: 1.6
2022-03-15 18:54:18,190 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?name=src" status: 200 len: 430 microversion: 1.0
2022-03-15 18:54:18,205 INFO [nova.virt.driver] Loading compute driver 'libvirt.LibvirtDriver'
2022-03-15 18:54:18,206 INFO [nova.compute.provider_config] No provider configs found in /etc/nova/provider_config/. If files are present, ensure the Nova process has access.
2022-03-15 18:54:18,212 INFO [nova.service] Starting compute node (version 24.1.0)
2022-03-15 18:54:18,222 INFO [nova.virt.libvirt.host] Secure Boot support detected
2022-03-15 18:54:18,222 WARNING [nova.virt.libvirt.driver] my_ip address (10.230.62.178) was not found on any of the interfaces:
2022-03-15 18:54:18,223 WARNING [nova.virt.libvirt.driver] Running Nova with a libvirt version less than 7.0.0 is deprecated. The required minimum version of libvirt will be raised to 7.0.0 in the next release.
2022-03-15 18:54:18,223 WARNING [nova.virt.libvirt.driver] Running Nova with a QEMU version less than 5.2.0 is deprecated. The required minimum version of QEMU will be raised to 5.2.0 in the next release.
2022-03-15 18:54:18,231 WARNING [nova.compute.manager] Compute node dest not found in the database. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 18:54:18,233 INFO [nova.compute.manager] Looking for unclaimed instances stuck in BUILDING status for nodes managed by this host
2022-03-15 18:54:18,241 WARNING [nova.compute.manager] No compute node record found for host dest. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 18:54:18,246 WARNING [nova.compute.resource_tracker] No compute node record for dest:dest
2022-03-15 18:54:18,251 INFO [nova.compute.resource_tracker] Compute node record created for dest:dest with uuid: 5bc15b73-4cf8-4a58-85ef-4e98d2f0ba6d
2022-03-15 18:54:18,278 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?in_tree=5bc15b73-4cf8-4a58-85ef-4e98d2f0ba6d" status: 200 len: 26 microversion: 1.14
2022-03-15 18:54:18,285 INFO [placement.requestlog] 127.0.0.1
"POST /placement/resource_providers" status: 200 len: 827 microversion: 1.20
2022-03-15 18:54:18,286 INFO [nova.scheduler.client.report] [req-7bd38941-c654-4f74-b4d3-cf29eea74529] Created resource provider record via placement API for resource provider with UUID 5bc15b73-4cf8-4a58-85ef-4e98d2f0ba6d and name dest.
2022-03-15 18:54:18,287 INFO [nova.virt.libvirt.host] kernel doesn't support AMD SEV
2022-03-15 18:54:18,305 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/5bc15b73-4cf8-4a58-85ef-4e98d2f0ba6d/inventories" status: 200 len: 407 microversion: 1.26
2022-03-15 18:54:18,316 INFO [placement.requestlog] 127.0.0.1 "GET /placement/traits?name=in:COMPUTE_GRAPHICS_MODEL_VMVGA,COMPUTE_STORAGE_BUS_FDC,COMPUTE_NET_VIF_MODEL_VIRTIO,COMPUTE_IMAGE_TYPE_RAW,COMPUTE_DEVICE_TAGGING,COMPUTE_NET_VIF_MODEL_SPAPR_VLAN,COMPUTE_NET_ATTACH_INTERFACE_WITH_TAG,COMPUTE_STORAGE_BUS_USB,COMPUTE_VOLUME_MULTI_ATTACH,COMPUTE_NET_VIF_MODEL_PCNET,COMPUTE_NET_VIF_MODEL_NE2K_PCI,COMPUTE_GRAPHICS_MODEL_CIRRUS,COMPUTE_STORAGE_BUS_SCSI,HW_CPU_X86_VMX,COMPUTE_STORAGE_BUS_SATA,COMPUTE_NET_VIF_MODEL_VMXNET3,COMPUTE_VOLUME_ATTACH_WITH_TAG,COMPUTE_VOLUME_EXTEND,COMPUTE_IMAGE_TYPE_AMI,COMPUTE_GRAPHICS_MODEL_VIRTIO,COMPUTE_IMAGE_TYPE_ISO,COMPUTE_NODE,COMPUTE_GRAPHICS_MODEL_BOCHS,COMPUTE_STORAGE_BUS_IDE,COMPUTE_SOCKET_PCI_NUMA_AFFINITY,HW_CPU_X86_INTEL_VMX,COMPUTE_IMAGE_TYPE_ARI,COMPUTE_GRAPHICS_MODEL_VGA,COMPUTE_NET_VIF_MODEL_E1000E,COMPUTE_NET_ATTACH_INTERFACE,COMPUTE_NET_VIF_MODEL_E1000,COMPUTE_GRAPHICS_MODEL_QXL,COMPUTE_IMAGE_TYPE_QCOW2,COMPUTE_TRUSTED_CERTS,COMPUTE_STORAGE_BUS_VIRTIO,COMPUTE_SECURITY_UEFI_SECURE_BOOT,HW_CPU_X86_AESNI,COMPUTE_IMAGE_TYPE_AKI,COMPUTE_NET_VIF_MODEL_RTL8139,COMPUTE_GRAPHICS_MODEL_NONE,COMPUTE_ACCELERATORS,COMPUTE_RESCUE_BFV" status: 200 len: 1231 microversion: 1.6
2022-03-15 18:54:18,342 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/5bc15b73-4cf8-4a58-85ef-4e98d2f0ba6d/traits" status: 200 len: 1266 microversion: 1.6
2022-03-15 18:54:18,352 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?name=dest" status: 200 len: 431 microversion: 1.0
2022-03-15 18:54:18,367 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/images/detail" status: 200 len: 5173 microversion: 2.35 time: 0.010859
2022-03-15 18:54:18,384 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/flavors/detail" status: 200 len: 2605 microversion: 2.90 time: 0.013790
2022-03-15 18:54:19,011 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocation_candidates?in_tree=b9bbffb2-d2ed-451a-a043-dacb50a83731&limit=1000&resources=DISK_GB%3A1%2CMEMORY_MB%3A512%2CVCPU%3A1&root_required=%21COMPUTE_STATUS_DISABLED" status: 200 len: 1735 microversion: 1.36
2022-03-15 18:54:19,040 INFO [nova.scheduler.host_manager] Host filter only checking host src and node src
2022-03-15 18:54:19,055 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/31bb655a-ff65-49fc-81b4-f04843e2012c" status: 200 len: 19 microversion: 1.28
2022-03-15 18:54:19,106 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/allocations/31bb655a-ff65-49fc-81b4-f04843e2012c" status: 204 len: 0 microversion: 1.36
2022-03-15 18:54:19,303 INFO [nova.api.openstack.requestlog] 127.0.0.1 "POST /v2.1/servers" status: 202 len: 414 microversion: 2.90 time: 0.916286
2022-03-15 18:54:19,402 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/31bb655a-ff65-49fc-81b4-f04843e2012c" status: 200 len: 230 microversion: 1.28
2022-03-15 18:54:19,405 INFO [nova.compute.claims] Claim successful on node src
2022-03-15 18:54:19,439 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/31bb655a-ff65-49fc-81b4-f04843e2012c" status: 200 len: 1779 microversion: 2.90 time: 0.132163
2022-03-15 18:54:19,575 INFO [nova.virt.libvirt.driver] Instance spawned successfully.
2022-03-15 18:54:19,576 INFO [nova.compute.manager] Took 0.06 seconds to spawn the instance on the hypervisor.
2022-03-15 18:54:19,622 INFO [nova.scheduler.host_manager] Received an update from an unknown host 'src'. Re-created its InstanceList.
202
2-03-15 18:54:19,626 INFO [nova.compute.manager] Took 0.27 seconds to build instance.
2022-03-15 18:54:20,029 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/31bb655a-ff65-49fc-81b4-f04843e2012c" status: 200 len: 1868 microversion: 2.90 time: 0.084461
2022-03-15 18:54:20,232 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/31bb655a-ff65-49fc-81b4-f04843e2012c" status: 200 len: 230 microversion: 1.28
2022-03-15 18:54:20,243 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/31bb655a-ff65-49fc-81b4-f04843e2012c" status: 200 len: 230 microversion: 1.28
2022-03-15 18:54:20,251 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/c2cd215d-3a11-473e-b462-6a2e2b4ac9fd" status: 200 len: 19 microversion: 1.28
2022-03-15 18:54:20,284 INFO [placement.requestlog] 127.0.0.1 "POST /placement/allocations" status: 204 len: 0 microversion: 1.28
2022-03-15 18:54:20,347 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocation_candidates?limit=1000&resources=DISK_GB%3A1%2CMEMORY_MB%3A512%2CVCPU%3A1&root_required=%21COMPUTE_STATUS_DISABLED" status: 200 len: 3423 microversion: 1.36
2022-03-15 18:54:20,371 INFO [nova.scheduler.host_manager] Host filter ignoring hosts: src
2022-03-15 18:54:20,378 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/31bb655a-ff65-49fc-81b4-f04843e2012c" status: 200 len: 19 microversion: 1.28
2022-03-15 18:54:20,409 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/allocations/31bb655a-ff65-49fc-81b4-f04843e2012c" status: 204 len: 0 microversion: 1.36
2022-03-15 18:54:20,502 INFO [nova.virt.libvirt.driver] Instance launched has CPU info: {"arch": "x86_64", "model": "Penryn", "vendor": "Intel", "topology": {"cells": 1, "sockets": 1, "cores": 4, "threads": 1}, "features": ["est", "monitor", "ds", "acpi", "vmx", "xtpr", "ht", "aes", "tm", "pbe", "tm2", "vme", "ds_cpl", "ss"]}
2022-03-15 18:54:20,518 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/31bb655a-ff65-49fc-81b4-f04843e2012c" status: 200 len: 230 microversion: 1.28
2022-03-15 18:54:20,626 INFO [nova.api.openstack.requestlog] 127.0.0.1 "POST /v2.1/servers/31bb655a-ff65-49fc-81b4-f04843e2012c/action" status: 202 len: 0 microversion: 2.90 time: 0.592013
2022-03-15 18:54:20,715 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/31bb655a-ff65-49fc-81b4-f04843e2012c" status: 200 len: 1878 microversion: 2.90 time: 0.081621
2022-03-15 18:54:20,736 ERROR [oslo_messaging.rpc.server] Exception during message handling
Traceback (most recent call last):
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/server.py", line 165, in _process_incoming
res = self.dispatcher.dispatch(message)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 309, in dispatch
return self._do_dispatch(endpoint, method, ctxt, args)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 229, in _do_dispatch
result = func(ctxt, **new_args)
File "/home/ubuntu/nova/nova/exception_wrapper.py", line 71, in wrapped
_emit_versioned_exception_notification(
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/exception_wrapper.py", line 63, in wrapped
return f(self, context, *args, **kw)
File "/home/ubuntu/nova/nova/compute/utils.py", line 1437, in decorated_function
return function(self, context, *args, **kwargs)
File "/home/ubuntu/nova/nova/compute/manager.py", line 211, in decorated_function
compute_utils.add_instance_fault_from_exc(context,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/func
tional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/compute/manager.py", line 200, in decorated_function
return function(self, context, *args, **kwargs)
File "/home/ubuntu/nova/nova/compute/manager.py", line 8263, in pre_live_migration
bdm.save()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/compute/manager.py", line 8219, in pre_live_migration
migrate_data = self.driver.pre_live_migration(context,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1100, in __call__
return _mock_self._mock_call(*args, **kwargs)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1104, in _mock_call
return _mock_self._execute_mock_call(*args, **kwargs)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1161, in _execute_mock_call
raise effect
nova.exception.DestinationDiskExists: The supplied disk path (/var/non/existent) already exists, it is expected not to exist.
2022-03-15 18:54:20,744 ERROR [nova.compute.manager] Pre live migration failed at dest
Traceback (most recent call last):
File "/home/ubuntu/nova/nova/compute/manager.py", line 8394, in _do_pre_live_migration_from_source
migrate_data = self.compute_rpcapi.pre_live_migration(
File "/home/ubuntu/nova/nova/compute/rpcapi.py", line 944, in pre_live_migration
return cctxt.call(ctxt, 'pre_live_migration',
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/client.py", line 189, in call
result = self.transport._send(
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/transport.py", line 123, in _send
return self._driver.send(target, ctxt, message,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/_drivers/impl_fake.py", line 222, in send
return self._send(target, ctxt, message, wait_for_reply, timeout,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/_drivers/impl_fake.py", line 209, in _send
raise failure
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/server.py", line 165, in _process_incoming
res = self.dispatcher.dispatch(message)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 309, in dispatch
return self._do_dispatch(endpoint, method, ctxt, args)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 229, in _do_dispatch
result = func(ctxt, **new_args)
File "/home/ubuntu/nova/nova/exception_wrapper.py", line 71, in wrapped
_emit_versioned_exception_notification(
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/exception_wrapper.py", line 63, in wrapped
return f(self, context, *args, **kw)
File "/home/ubuntu/nova/nova/compute/utils.py", line 1437, in decorated_function
return function(self, context, *args, **kwargs)
File "/home/ubuntu/nova/nova/compute/manager.py", line 211, in decorated_function
compute_utils.add_instance_fault_from_exc(context,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200,
in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/compute/manager.py", line 200, in decorated_function
return function(self, context, *args, **kwargs)
File "/home/ubuntu/nova/nova/compute/manager.py", line 8263, in pre_live_migration
bdm.save()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/compute/manager.py", line 8219, in pre_live_migration
migrate_data = self.driver.pre_live_migration(context,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1100, in __call__
return _mock_self._mock_call(*args, **kwargs)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1104, in _mock_call
return _mock_self._execute_mock_call(*args, **kwargs)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1161, in _execute_mock_call
raise effect
nova.exception.DestinationDiskExists: The supplied disk path (/var/non/existent) already exists, it is expected not to exist.
2022-03-15 18:54:20,772 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/os-migrations" status: 200 len: 510 microversion: 2.90 time: 0.053810
2022-03-15 18:54:20,776 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/c2cd215d-3a11-473e-b462-6a2e2b4ac9fd" status: 200 len: 230 microversion: 1.28
2022-03-15 18:54:20,777 INFO [nova.compute.manager] Swapping old allocation on dict_keys(['b9bbffb2-d2ed-451a-a043-dacb50a83731']) held by migration c2cd215d-3a11-473e-b462-6a2e2b4ac9fd for instance
2022-03-15 18:54:20,786 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/c2cd215d-3a11-473e-b462-6a2e2b4ac9fd" status: 200 len: 230 microversion: 1.28
2022-03-15 18:54:20,795 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/31bb655a-ff65-49fc-81b4-f04843e2012c" status: 200 len: 230 microversion: 1.28
2022-03-15 18:54:20,838 INFO [placement.requestlog] 127.0.0.1 "POST /placement/allocations" status: 204 len: 0 microversion: 1.28
2022-03-15 18:54:20,876 WARNING [nova.compute.manager] Unable to cancel live migration.
======
Totals
======
Ran: 116 tests in 13.7766 sec.
- Passed: 114
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 1
Sum of execute time for each test: 545.6169 sec.
==============
Worker Balance
==============
- Worker 0 (1 tests) => 0:00:09.896884
- Worker 1 (1 tests) => 0:00:09.118638
- Worker 2 (1 tests) => 0:00:09.559201
- Worker 3 (2 tests) => 0:00:10.690002
- Worker 4 (2 tests) => 0:00:09.402868
- Worker 5 (2 tests) => 0:00:09.777283
- Worker 6 (2 tests) => 0:00:11.044458
- Worker 7 (2 tests) => 0:00:09.461481
- Worker 8 (2 tests) => 0:00:07.189426
- Worker 9 (2 tests) => 0:00:10.098230
- Worker 10 (2 tests) => 0:00:07.702175
- Worker 11 (2 tests) => 0:00:09.885490
- Worker 12 (2 tests) => 0:00:09.246390
- Worker 13 (2 tests) => 0:00:07.609824
- Worker 14 (2 tests) => 0:00:07.060356
- Worker 15 (2 tests) => 0:00:07.226237
- Worker 16 (2 tests) => 0:00:10.481974
- Worker 17 (2 tests) => 0:00:11.255579
- Worker 18 (2 tests) => 0:00:06.798356
- Worker 19 (2 tests) => 0:00:08.772224
- Worker 20 (3 tests) => 0:00:09.197268
- Worker 21 (2 tests) => 0:00:08.914520
- Worker 22 (2 tests) => 0:00:10.364797
- Worker 23 (2 tests) => 0:00:07.150512
- Worker 24 (2 tests) => 0:00:09.508183
- Worker 25 (2 tests) => 0:00:11.779311
- Worker 26 (3 tests) => 0:00:10.513086
- Worker 27 (3 tests) => 0:00:09.040304
- Worker 28 (3 tests) => 0:00:11.047342
- Worker 29 (3 tests) => 0:00:12.794484
- Worker 30 (3 tests) => 0:00:11.925279
- Worker 31 (2 tests) => 0:00:08.798084
- Worker 32 (2 tests) => 0:00:09.644038
- Worker 33 (2 tests) => 0:00:09.245742
- Worker 34 (2 tests) => 0:00:09.436992
- Worker 35 (2 tests) => 0:00:13.421586
- Worker 36 (2 tests) => 0:00:11.797960
- Worker 37 (2 tests) => 0:00:10.474548
- Worker 38 (3 tests) => 0:00:09.861030
- Worker 39 (2 tests) => 0:00:08.085972
- Worker 40 (2 tests) => 0:00:12.847891
- Worker 41 (2 tests) => 0:00:09.401815
- Worker 42 (2 tests) => 0:00:09.801031
- Worker 43 (2 tests) => 0:00:07.374303
- Worker 44 (2 tests) => 0:00:11.869616
- Worker 45 (2 tests) => 0:00:09.147897
- Worker 46 (2 tests) => 0:00:10.547329
- Worker 47 (2 tests) => 0:00:11.771637
- Worker 48 (2 tests) => 0:00:07.217275
- Worker 49 (2 tests) => 0:00:11.748320
- Worker 50 (2 tests) => 0:00:09.387995
- Worker 51 (2 tests) => 0:00:10.677271
- Worker 52 (2 tests) => 0:00:11.131224
- Worker 53 (2 tests) => 0:00:09.630020
- Worker 54 (2 tests) => 0:00:08.781235
- Worker 55 (2 tests) => 0:00:09.110661
ERROR: InvocationError for command /home/ubuntu/nova/.tox/functional-py39/bin/stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions (exited with code 1)
__________________________________________________________________________________ summary __________________________________________________________________________________
ERROR: functional-py39: commands failed
Tox run 2
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/easy_install.py:160: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
functional-py39 develop-inst-noop: /home/ubuntu/nova
functional-py39 installed: alembic==1.7.6,amqp==5.0.9,appdirs==1.4.4,attrs==21.4.0,automaton==2.5.0,autopage==0.5.0,bandit==1.7.4,bcrypt==3.2.0,cachetools==5.0.0,castellan==3.10.1,certifi==2021.10.8,cffi==1.15.0,charset-normalizer==2.0.12,cliff==3.10.1,cmd2==2.4.0,colorama==0.4.4,coverage==6.3.2,cryptography==36.0.1,cursive==0.2.2,ddt==1.4.4,debtcollector==2.4.0,decorator==5.1.1,dnspython==2.1.0,dogpile.cache==1.1.5,eventlet==0.33.0,extras==1.0.0,fasteners==0.17.3,fixtures==3.0.0,flake8==3.8.4,future==0.18.2,futurist==2.4.0,gabbi==2.4.0,gitdb==4.0.9,GitPython==3.1.27,greenlet==1.1.2,hacking==3.1.0,idna==3.3,iniconfig==1.1.1,iso8601==1.0.2,Jinja2==3.0.3,jmespath==0.10.0,jsonpatch==1.32,jsonpath-rw==1.4.0,jsonpath-rw-ext==1.2.2,jsonpointer==2.2,jsonschema==3.2.0,keystoneauth1==4.5.0,keystonemiddleware==9.4.0,kombu==5.2.4,lxml==4.8.0,Mako==1.1.6,MarkupSafe==2.1.1,mccabe==0.6.1,microversion-parse==1.0.1,mock==4.0.3,msgpack==1.0.3,munch==2.5.0,mypy==0.931,mypy-extensions==0.4.3,netaddr==0.8.0,netifaces==0.11.0,networkx==2.7.1,-e git+https://review.opendev.org/openstack/nova@d43538712c034023bdb3e25cd7adfdee409ed596#egg=nova,numpy==1.22.3,openstack-placement==6.0.0,openstacksdk==0.61.0,os-brick==5.2.0,os-client-config==2.1.0,os-resource-classes==1.1.0,os-service-types==1.7.0,os-traits==2.7.0,os-vif==2.7.1,os-win==5.6.0,osc-lib==2.5.0,oslo.cache==2.10.1,oslo.concurrency==4.5.0,oslo.config==8.8.0,oslo.context==4.1.0,oslo.db==11.2.0,oslo.i18n==5.1.0,oslo.log==4.7.0,oslo.messaging==12.13.0,oslo.metrics==0.4.0,oslo.middleware==4.5.1,oslo.policy==3.11.0,oslo.privsep==2.7.0,oslo.reports==2.3.0,oslo.rootwrap==6.3.1,oslo.serialization==4.3.0,oslo.service==2.8.0,oslo.upgradecheck==1.5.0,oslo.utils==4.12.2,oslo.versionedobjects==2.6.0,oslotest==4.5.0,osprofiler==3.4.2,ovs==2.16.0,ovsdbapp==1.15.1,packaging==21.3,paramiko==2.8.1,Paste==3.5.0,PasteDeploy==2.1.1,pbr==5.8.1,pluggy==1.0.0,ply==3.11,prettytable==3.2.0,prometheus-client==0.13.1,psutil==5.9.0,psycopg2-binary==2.9.3,py==1.11.0,pycadf==3.1.1,pycodestyle==2.6.0,pycparser==2.21,pydot==1.4.2,pyflakes==2.2.0,pyinotify==0.9.6,PyMySQL==1.0.2,PyNaCl==1.5.0,pyOpenSSL==22.0.0,pyparsing==3.0.7,pyperclip==1.8.2,pyroute2==0.6.6,pyroute2.core==0.6.6,pyroute2.ethtool==0.6.6,pyroute2.ipdb==0.6.6,pyroute2.ipset==0.6.6,pyroute2.ndb==0.6.6,pyroute2.nftables==0.6.6,pyroute2.nslink==0.6.6,pyrsistent==0.18.1,pytest==7.0.1,python-barbicanclient==5.3.0,python-cinderclient==8.3.0,python-dateutil==2.8.2,python-glanceclient==3.6.0,python-ironicclient==4.11.0,python-keystoneclient==4.4.0,python-neutronclient==7.8.0,python-subunit==1.4.0,pytz==2021.3,PyYAML==6.0,repoze.lru==0.7,requests==2.27.1,requests-mock==1.9.3,requestsexceptions==1.4.0,retrying==1.3.3,rfc3986==1.5.0,Routes==2.5.1,simplejson==3.17.6,six==1.16.0,smmap==5.0.0,sortedcontainers==2.4.0,SQLAlchemy==1.4.31,sqlalchemy-migrate==0.13.0,sqlparse==0.4.2,statsd==3.3.0,stestr==3.2.1,stevedore==3.5.0,taskflow==4.6.4,Tempita==0.5.2,tenacity==6.3.1,testresources==2.0.1,testscenarios==0.5.0,testtools==2.5.0,tomli==2.0.1,tooz==2.10.1,types-cryptography==3.3.15,types-enum34==1.1.8,types-ipaddress==1.0.8,types-paramiko==2.8.13,typing_extensions==4.1.1,urllib3==1.26.8,vine==5.0.0,voluptuous==0.12.2,warlock==1.3.3,wcwidth==0.2.5,WebOb==1.8.7,websockify==0.10.0,wrapt==1.13.3,wsgi-intercept==1.9.3,yappi==1.3.3
functional-py39 run-test-pre: PYTHONHASHSEED='404601500'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
2022-03-15 18:54:42.232 538228 INFO oslo_service.periodic_task [req-32d62d65-dfb8-42ef-8d17-e3c7b6cc8be2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.291 538232 INFO oslo_service.periodic_task [req-c9dfdf2e-e0ce-4206-a753-0cac34e8afd7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.412 538234 INFO oslo_service.periodic_task [req-13878ee3-b94c-43b0-9576-af82286f4110 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.423 538222 INFO oslo_service.periodic_task [req-0c1e6de0-ff72-4a05-a791-aeffb75f7bf3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.447 538240 INFO oslo_service.periodic_task [req-0cb73238-90c1-4354-a0ce-e361ff45df1c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.459 538270 INFO oslo_service.periodic_task [req-300c0f48-b4cb-4fec-9fdd-42cf37c73180 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.465 538230 INFO oslo_service.periodic_task [req-c10fadb3-21f6-4f57-adcf-b7e3e542fb51 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.469 538216 INFO oslo_service.periodic_task [req-627cb15f-69d3-4981-8af4-4465d4bf3a7e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.487 538258 INFO oslo_service.periodic_task [req-c105dd50-f095-487c-a398-6343edc6c847 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.490 538272 INFO oslo_service.periodic_task [req-3b15c5a0-af7b-499c-bda3-d7b373fcea61 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.516 538242 INFO oslo_service.periodic_task [req-1e796c2c-1a75-41dc-9eb1-1ddb4cceb440 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.525 538236 INFO oslo_service.periodic_task [req-e2846329-914c-4574-a928-e1e1f1344933 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.543 538226 INFO oslo_service.periodic_task [req-3ccaf2f6-3d12-4672-9faa-edfbde78f9e3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.543 538246 INFO oslo_service.periodic_task [req-fff51904-8051-4704-a5ed-6576b0a194f7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.578 538220 INFO oslo_service.periodic_task [req-3c4da969-8089-4e6e-81f2-bb9ad667facd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.593 538282 INFO oslo_service.periodic_task [req-af7b6620-4aa1-4f10-8f39-c9f80315bf83 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.597 538224 INFO oslo_service.periodic_task [req-f2e9d191-e6e0-4b9f-82b0-73740f42901f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.614 538280 INFO oslo_service.periodic_task [req-80ea8a2f-1165-4468-8dff-9af12dc84100 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.621 538260 INFO oslo_service.periodic_task [req-42150a1f-75a9-4e69-a25c-b74f37223c38 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.624 538310 INFO oslo_service.periodic_task [req-a5bd4607-5a04-4c43-82d0-51c73c3fab89 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.627 538264 INFO oslo_service.periodic_task [req-558d3ec5-9f0a-4d77-b1fa-1a41d4fad5fa - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.627 538238 INFO oslo_service.periodic_task [req-f2eba430-ce53-4d1e-907c-887da8f760cd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.637 538256 INFO oslo_service.periodic_task [req-2d5c5cb8-78d3-4427-acfe-54ace3281b2c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.652 538244 INFO oslo_service.periodic_task [req-5b8deab7-6e95-4212-9c78-95e489124465 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.659 538300 INFO oslo_service.periodic_task [req-665811f8-d226-4a0d-90b0-c16c798603e0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.659 538292 INFO oslo_service.periodic_task [req-0300b1f3-7380-435d-ba83-345dd482e99c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.665 538316 INFO oslo_service.periodic_task [req-e9e92bac-7b2f-4ba6-9926-466efb36b4bc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.678 538278 INFO oslo_service.periodic_task [req-381415af-afea-4c32-8707-67d5d6df95a8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.678 538312 INFO oslo_service.periodic_task [req-8bec34d0-46b0-4420-b645-4da2bea8e998 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.685 538286 INFO oslo_service.periodic_task [req-c508db72-67c6-4c92-8241-65469edc2a10 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.695 538274 INFO oslo_service.periodic_task [req-9e97de96-8c80-401d-9120-6b4cbfc4bc40 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.697 538276 INFO oslo_service.periodic_task [req-2292a5f3-157b-4cef-9830-a2db4245fb97 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.713 538250 INFO oslo_service.periodic_task [req-56607330-e63d-496d-966f-9220449ab183 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.726 538252 INFO oslo_service.periodic_task [req-6127998c-4e7c-4dd4-8ce8-ac8d05599baf - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.733 538288 INFO oslo_service.periodic_task [req-28ae5ab0-d401-4df3-b6fe-811432d735bb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.734 538254 INFO oslo_service.periodic_task [req-92122115-c0fa-4c3a-b835-6ec854b1ed02 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.741 538290 INFO oslo_service.periodic_task [req-dd6ee0eb-68a5-4c00-baa4-46aa44cfe565 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.763 538327 INFO oslo_service.periodic_task [req-882e8c61-a02d-4590-b1c9-d57c4d79c585 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.765 538266 INFO oslo_service.periodic_task [req-e908660c-a645-4c59-a37f-a516deec8049 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.777 538318 INFO oslo_service.periodic_task [req-99c47584-c154-46e6-ad4e-89339ee1ed64 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.782 538218 INFO oslo_service.periodic_task [req-5cc2f5ed-f7c3-403d-bc98-4dd9b62189ce - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.785 538248 INFO oslo_service.periodic_task [req-98f77d19-02aa-4e97-a68a-1ecdbf5d55dc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.792 538298 INFO oslo_service.periodic_task [req-daa9ca3d-f6ca-4efd-9e97-22a6a5cb09d4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.794 538304 INFO oslo_service.periodic_task [req-7ea2c506-88e1-431c-8474-9291756cbe19 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.799 538308 INFO oslo_service.periodic_task [req-7436a14e-770e-48a2-a4bd-d3885c677c11 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.807 538296 INFO oslo_service.periodic_task [req-d3d6a1b0-1d01-4ff5-a41e-1ab239af127a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.830 538284 INFO oslo_service.periodic_task [req-bcd91f64-f197-4a3d-aee7-baebc2cbac14 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.833 538262 INFO oslo_service.periodic_task [req-0327c910-15ea-4311-922c-bcdaa9843087 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.846 538268 INFO oslo_service.periodic_task [req-889a0459-c0d5-4090-b670-a79bf46c3194 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.849 538314 INFO oslo_service.periodic_task [req-154c8887-4449-41af-92b7-6765701a02e3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.851 538302 INFO oslo_service.periodic_task [req-1af3aea9-01ae-4df8-932a-7250e73ee1a0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.854 538294 INFO oslo_service.periodic_task [req-b5b200fe-b88b-4539-bd9e-4b89c44c86a6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.924 538306 INFO oslo_service.periodic_task [req-690560c8-086c-452c-b978-1a2010eb8816 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.926 538324 INFO oslo_service.periodic_task [req-df3c5933-2c00-406e-ac82-b8afd15e5ed9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.976 538320 INFO oslo_service.periodic_task [req-886f6725-492f-4cdb-82a6-01514c76068f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:54:42.992 538322 INFO oslo_service.periodic_task [req-8f95f922-6b84-44bf-8c04-403a39082e55 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
{43} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.690326s] ... ok
{6} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.357868s] ... ok
{8} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.384642s] ... ok
{9} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.411318s] ... ok
{7} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.365347s] ... ok
{12} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.420235s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.383095s] ... ok
{4} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.364635s] ... ok
{10} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.491131s] ... ok
{42} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [2.894478s] ... ok
{22} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.440025s] ... ok
{37} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [3.344071s] ... ok
{19} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{28} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.750635s] ... ok
{11} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [3.973293s] ... ok
{33} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [4.024240s] ... ok
{34} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.992535s] ... ok
{39} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [4.104369s] ... ok
{15} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [4.413647s] ... ok
{40} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.167667s] ... ok
{51} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [4.491982s] ... ok
{14} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [4.622571s] ... ok
{55} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [4.581262s] ... ok
{16} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [4.613206s] ... ok
{24} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.019199s] ... ok
{48} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [4.982382s] ... ok
{30} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.235925s] ... ok
{35} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.355633s] ... ok
{46} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [5.233566s] ... ok
{49} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [5.198505s] ... ok
{31} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.617598s] ... ok
{43} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [4.072861s] ... ok
{27} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [6.236268s] ... ok
{29} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [6.092155s] ... ok
{42} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [3.497907s] ... ok
{23} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [6.440972s] ... ok
{44} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [6.522098s] ... ok
{26} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [6.527980s] ... ok
{18} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [6.692328s] ... ok
{17} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [6.710158s] ... ok
{20} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [6.938255s] ... ok
{50} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [6.918546s] ... ok
{53} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.589226s] ... ok
{52} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [6.762346s] ... ok
{38} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [7.109900s] ... ok
{40} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [2.812103s] ... ok
{34} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [3.014672s] ... ok
{8} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [5.198127s] ... ok
{44} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.548602s] ... ok
{36} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [7.214348s] ... ok
{10} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [4.951313s] ... ok
{54} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [7.043136s] ... ok
{41} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [7.184571s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/hub.py", line 476, in fire_timers
timer()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/timer.py", line 59, in __call__
cb(*args, **kw)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/greenthread.py", line 221, in main
result = function(*args, **kwargs)
File "/home/ubuntu/nova/nova/utils.py", line 655, in context_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/tests/fixtures/nova.py", line 1661, in test_case_id_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9744, in _live_migration_operation
LOG.error("Live Migration failure: %s", e, instance=instance)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9700, in _live_migration_operation
new_xml_str = libvirt_migrate.get_updated_guest_xml(
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 66, in get_updated_guest_xml
xml_doc = _update_vif_xml(xml_doc, migrate_data, get_vif_config)
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 396, in _update_vif_xml
interface_dev.insert(index + 1, address)
TypeError: Argument 'element' has incorrect type (expected lxml.etree._Element, got NoneType)
{32} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [7.393434s] ... ok
{37} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.134159s] ... ok
{39} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [3.322778s] ... ok
{48} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [2.683081s] ... ok
{45} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [7.401017s] ... ok
{47} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [7.823277s] ... ok
{13} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [7.931963s] ... ok
{6} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [6.010176s] ... ok
{33} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [3.987006s] ... ok
{17} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.264133s] ... ok
{28} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [4.457259s] ... ok
{25} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [8.176770s] ... ok
{19} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [4.910759s] ... ok
{45} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [0.952470s] ... ok
{5} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [6.445215s] ... ok
{4} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [6.417622s] ... ok
{31} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [3.183684s] ... ok
{0} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [9.242331s] ... ok
{21} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [9.251936s] ... ok
{16} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [4.419507s] ... ok
{12} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [7.056801s] ... ok
{24} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [4.335043s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "instances" and FROM element "security_groups". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{22} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [5.965917s] ... ok
{3} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [9.614795s] ... ok
{15} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [5.128884s] ... ok
{49} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [4.085807s] ... ok
{54} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [2.196774s] ... ok
{3} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [0.212953s] ... ok
{1} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.473229s] ... ok
{11} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [5.782343s] ... ok
{27} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [3.699133s] ... ok
{2} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [9.883990s] ... ok
{26} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [3.098280s] ... ok
{18} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.145097s] ... ok
{51} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [5.325022s] ... ok
{52} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [2.870861s] ... ok
{7} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.841586s] ... ok
{30} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [4.758206s] ... ok
{9} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.883405s] ... ok
{20} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [3.126807s] ... ok
{13} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [2.373769s] ... ok
{35} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [4.827710s] ... ok
{42} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [3.944089s] ... ok
{46} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [5.068359s] ... ok
{55} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [5.815648s] ... ok
{23} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [4.098678s] ... ok
{38} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.659952s] ... ok
{41} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [3.523178s] ... ok
{36} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [3.829296s] ... ok
{43} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [5.225908s] ... ok
{50} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.448024s] ... ok
{38} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.608489s] ... ok
{32} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.143866s] ... ok
{14} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [6.919042s] ... ok
{44} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [4.404847s] ... ok
{47} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [3.842220s] ... ok
{53} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [4.793550s] ... ok
{25} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [3.642559s] ... ok
{21} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [2.972492s] ... ok
{29} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.139896s] ... ok
{45} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [3.934713s] ... ok
{37} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.550815s] ... ok
{54} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [4.486298s] ... ok
======
Totals
======
Ran: 116 tests in 14.4335 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 555.5763 sec.
==============
Worker Balance
==============
- Worker 0 (1 tests) => 0:00:09.242331
- Worker 1 (1 tests) => 0:00:09.473229
- Worker 2 (1 tests) => 0:00:09.883990
- Worker 3 (2 tests) => 0:00:09.829124
- Worker 4 (2 tests) => 0:00:08.785125
- Worker 5 (2 tests) => 0:00:08.830644
- Worker 6 (2 tests) => 0:00:08.370697
- Worker 7 (2 tests) => 0:00:10.209940
- Worker 8 (2 tests) => 0:00:07.584970
- Worker 9 (2 tests) => 0:00:10.296706
- Worker 10 (2 tests) => 0:00:07.444577
- Worker 11 (2 tests) => 0:00:09.756398
- Worker 12 (2 tests) => 0:00:09.480325
- Worker 13 (2 tests) => 0:00:10.307547
- Worker 14 (2 tests) => 0:00:11.543221
- Worker 15 (2 tests) => 0:00:09.543394
- Worker 16 (2 tests) => 0:00:09.033795
- Worker 17 (2 tests) => 0:00:07.976448
- Worker 18 (2 tests) => 0:00:09.838782
- Worker 19 (2 tests) => 0:00:08.344797
- Worker 20 (2 tests) => 0:00:10.066612
- Worker 21 (2 tests) => 0:00:12.225999
- Worker 22 (2 tests) => 0:00:09.408656
- Worker 23 (2 tests) => 0:00:10.541489
- Worker 24 (2 tests) => 0:00:09.355988
- Worker 25 (2 tests) => 0:00:11.821410
- Worker 26 (2 tests) => 0:00:09.627033
- Worker 27 (2 tests) => 0:00:09.938465
- Worker 28 (2 tests) => 0:00:08.209567
- Worker 29 (2 tests) => 0:00:12.233658
- Worker 30 (2 tests) => 0:00:09.995584
- Worker 31 (2 tests) => 0:00:08.802900
- Worker 32 (2 tests) => 0:00:11.538763
- Worker 33 (2 tests) => 0:00:08.013210
- Worker 34 (2 tests) => 0:00:07.008145
- Worker 35 (2 tests) => 0:00:10.186029
- Worker 36 (2 tests) => 0:00:11.045179
- Worker 37 (3 tests) => 0:00:13.032057
- Worker 38 (3 tests) => 0:00:11.381772
- Worker 39 (2 tests) => 0:00:07.428159
- Worker 40 (2 tests) => 0:00:06.980749
- Worker 41 (2 tests) => 0:00:10.708849
- Worker 42 (3 tests) => 0:00:10.340420
- Worker 43 (3 tests) => 0:00:10.993110
- Worker 44 (3 tests) => 0:00:11.478468
- Worker 45 (3 tests) => 0:00:12.291153
- Worker 46 (2 tests) => 0:00:10.304938
- Worker 47 (2 tests) => 0:00:11.667227
- Worker 48 (2 tests) => 0:00:07.667729
- Worker 49 (2 tests) => 0:00:09.288699
- Worker 50 (2 tests) => 0:00:11.368003
- Worker 51 (2 tests) => 0:00:09.817965
- Worker 52 (2 tests) => 0:00:09.633973
- Worker 53 (2 tests) => 0:00:11.384949
- Worker 54 (3 tests) => 0:00:13.729655
- Worker 55 (2 tests) => 0:00:10.398469
functional-py39 run-test: commands[1] | stestr slowest
Test id Runtime (s)
------------------------------------------------------------------------------------------------------------------------------------------------------ -----------
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True 9.884
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 9.615
nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid 9.473
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True 9.252
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False 9.242
nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute 8.177
nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 7.932
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False 7.883
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.842
nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules 7.823
__________________________________________________________________________________ summary __________________________________________________________________________________
functional-py39: commands succeeded
congratulations :)
Tox run 3
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/easy_install.py:160: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
functional-py39 develop-inst-noop: /home/ubuntu/nova
functional-py39 installed: alembic==1.7.6,amqp==5.0.9,appdirs==1.4.4,attrs==21.4.0,automaton==2.5.0,autopage==0.5.0,bandit==1.7.4,bcrypt==3.2.0,cachetools==5.0.0,castellan==3.10.1,certifi==2021.10.8,cffi==1.15.0,charset-normalizer==2.0.12,cliff==3.10.1,cmd2==2.4.0,colorama==0.4.4,coverage==6.3.2,cryptography==36.0.1,cursive==0.2.2,ddt==1.4.4,debtcollector==2.4.0,decorator==5.1.1,dnspython==2.1.0,dogpile.cache==1.1.5,eventlet==0.33.0,extras==1.0.0,fasteners==0.17.3,fixtures==3.0.0,flake8==3.8.4,future==0.18.2,futurist==2.4.0,gabbi==2.4.0,gitdb==4.0.9,GitPython==3.1.27,greenlet==1.1.2,hacking==3.1.0,idna==3.3,iniconfig==1.1.1,iso8601==1.0.2,Jinja2==3.0.3,jmespath==0.10.0,jsonpatch==1.32,jsonpath-rw==1.4.0,jsonpath-rw-ext==1.2.2,jsonpointer==2.2,jsonschema==3.2.0,keystoneauth1==4.5.0,keystonemiddleware==9.4.0,kombu==5.2.4,lxml==4.8.0,Mako==1.1.6,MarkupSafe==2.1.1,mccabe==0.6.1,microversion-parse==1.0.1,mock==4.0.3,msgpack==1.0.3,munch==2.5.0,mypy==0.931,mypy-extensions==0.4.3,netaddr==0.8.0,netifaces==0.11.0,networkx==2.7.1,-e git+https://review.opendev.org/openstack/nova@d43538712c034023bdb3e25cd7adfdee409ed596#egg=nova,numpy==1.22.3,openstack-placement==6.0.0,openstacksdk==0.61.0,os-brick==5.2.0,os-client-config==2.1.0,os-resource-classes==1.1.0,os-service-types==1.7.0,os-traits==2.7.0,os-vif==2.7.1,os-win==5.6.0,osc-lib==2.5.0,oslo.cache==2.10.1,oslo.concurrency==4.5.0,oslo.config==8.8.0,oslo.context==4.1.0,oslo.db==11.2.0,oslo.i18n==5.1.0,oslo.log==4.7.0,oslo.messaging==12.13.0,oslo.metrics==0.4.0,oslo.middleware==4.5.1,oslo.policy==3.11.0,oslo.privsep==2.7.0,oslo.reports==2.3.0,oslo.rootwrap==6.3.1,oslo.serialization==4.3.0,oslo.service==2.8.0,oslo.upgradecheck==1.5.0,oslo.utils==4.12.2,oslo.versionedobjects==2.6.0,oslotest==4.5.0,osprofiler==3.4.2,ovs==2.16.0,ovsdbapp==1.15.1,packaging==21.3,paramiko==2.8.1,Paste==3.5.0,PasteDeploy==2.1.1,pbr==5.8.1,pluggy==1.0.0,ply==3.11,prettytable==3.2.0,prometheus-client==0.13.1,psutil==5.9.0,psycopg2-binary==2.9.3,py==1.11.0,pycadf==3.1.1,pycodestyle==2.6.0,pycparser==2.21,pydot==1.4.2,pyflakes==2.2.0,pyinotify==0.9.6,PyMySQL==1.0.2,PyNaCl==1.5.0,pyOpenSSL==22.0.0,pyparsing==3.0.7,pyperclip==1.8.2,pyroute2==0.6.6,pyroute2.core==0.6.6,pyroute2.ethtool==0.6.6,pyroute2.ipdb==0.6.6,pyroute2.ipset==0.6.6,pyroute2.ndb==0.6.6,pyroute2.nftables==0.6.6,pyroute2.nslink==0.6.6,pyrsistent==0.18.1,pytest==7.0.1,python-barbicanclient==5.3.0,python-cinderclient==8.3.0,python-dateutil==2.8.2,python-glanceclient==3.6.0,python-ironicclient==4.11.0,python-keystoneclient==4.4.0,python-neutronclient==7.8.0,python-subunit==1.4.0,pytz==2021.3,PyYAML==6.0,repoze.lru==0.7,requests==2.27.1,requests-mock==1.9.3,requestsexceptions==1.4.0,retrying==1.3.3,rfc3986==1.5.0,Routes==2.5.1,simplejson==3.17.6,six==1.16.0,smmap==5.0.0,sortedcontainers==2.4.0,SQLAlchemy==1.4.31,sqlalchemy-migrate==0.13.0,sqlparse==0.4.2,statsd==3.3.0,stestr==3.2.1,stevedore==3.5.0,taskflow==4.6.4,Tempita==0.5.2,tenacity==6.3.1,testresources==2.0.1,testscenarios==0.5.0,testtools==2.5.0,tomli==2.0.1,tooz==2.10.1,types-cryptography==3.3.15,types-enum34==1.1.8,types-ipaddress==1.0.8,types-paramiko==2.8.13,typing_extensions==4.1.1,urllib3==1.26.8,vine==5.0.0,voluptuous==0.12.2,warlock==1.3.3,wcwidth==0.2.5,WebOb==1.8.7,websockify==0.10.0,wrapt==1.13.3,wsgi-intercept==1.9.3,yappi==1.3.3
functional-py39 run-test-pre: PYTHONHASHSEED='1077498019'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
2022-03-15 18:55:16.447 539245 INFO oslo_service.periodic_task [req-531dcb80-d279-46c2-95e7-91c6043063d9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.541 539243 INFO oslo_service.periodic_task [req-6495609b-65d4-4fe3-8289-24b6c54d11d1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.565 539233 INFO oslo_service.periodic_task [req-ebe728c2-6e12-4bfa-b33b-c0287e4afda8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.578 539257 INFO oslo_service.periodic_task [req-9d3dadf9-55cd-4023-917f-28ff6a816e6e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.657 539249 INFO oslo_service.periodic_task [req-d864aa2b-0edf-48e7-a49d-9cec7c89006d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.682 539259 INFO oslo_service.periodic_task [req-1373dfb5-6e69-456e-b566-ef72b70b1aee - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.700 539253 INFO oslo_service.periodic_task [req-d95652e1-8a5d-4704-b932-f54ea42dc6de - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.702 539239 INFO oslo_service.periodic_task [req-4b14719a-23f6-4c90-935d-f08e8aa87930 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.728 539255 INFO oslo_service.periodic_task [req-a98581af-6b29-4e9a-8d0a-f739ef96362e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.775 539315 INFO oslo_service.periodic_task [req-acdee3b8-6647-4a8e-ae6c-741b29bd5954 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.791 539291 INFO oslo_service.periodic_task [req-285ba930-8af4-45a0-af4a-3b5cbe3e9f18 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.794 539267 INFO oslo_service.periodic_task [req-e963259d-e70b-4907-a5ed-06c9bed40588 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.801 539241 INFO oslo_service.periodic_task [req-5cf3e795-1569-4418-970b-f59ef6315e5c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.808 539251 INFO oslo_service.periodic_task [req-d00915b9-6a39-4d67-bc07-d0dbf59ae2a2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.816 539311 INFO oslo_service.periodic_task [req-ffa106bc-ccf4-4810-96cc-c786ca834fc8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.815 539279 INFO oslo_service.periodic_task [req-cf511e76-934e-4c03-92b9-d6ff35097346 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.817 539271 INFO oslo_service.periodic_task [req-2d28397d-2c53-4bce-9f18-01081586a96f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.846 539329 INFO oslo_service.periodic_task [req-a4deafed-591b-4731-bb19-9ce5dfbe72d3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.855 539283 INFO oslo_service.periodic_task [req-25763fe7-9060-4f71-a75a-521fd409eed3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.855 539265 INFO oslo_service.periodic_task [req-2a25996e-846a-4824-ad31-4e85d819c927 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.869 539273 INFO oslo_service.periodic_task [req-4a773bc7-9489-477b-b8a5-6c90270367e2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.870 539327 INFO oslo_service.periodic_task [req-3c212e99-2110-4dd7-a6cb-56f13e1c05f1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.875 539237 INFO oslo_service.periodic_task [req-6533be41-bbf0-4492-87f4-fe342ee3eaed - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.892 539235 INFO oslo_service.periodic_task [req-10f6e291-9143-4f76-8aff-5370250a1704 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.900 539299 INFO oslo_service.periodic_task [req-8bf1ed7b-c64c-404a-9073-2cbb32921d95 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.927 539293 INFO oslo_service.periodic_task [req-46b8cb31-d76c-45df-b2b1-38ad003a9692 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.943 539307 INFO oslo_service.periodic_task [req-68854294-e79f-426b-891e-37071b38bc1c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.947 539275 INFO oslo_service.periodic_task [req-c5eca88b-03bd-49bf-83f0-43563a03e95d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.961 539263 INFO oslo_service.periodic_task [req-c92e2ba7-426a-42fe-8a3a-f92719a1cf0b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.974 539333 INFO oslo_service.periodic_task [req-2039b862-ab2a-4551-a0d0-18eb44cdfb49 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:16.981 539295 INFO oslo_service.periodic_task [req-de8cc9cb-3608-4f69-8486-31b1dd495744 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:17.001 539325 INFO oslo_service.periodic_task [req-d3a8851a-4d89-42c1-a556-b00cad0e0d3f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:17.006 539287 INFO oslo_service.periodic_task [req-fd059a22-2f92-4db1-a2ae-2b80a71fb66a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:17.017 539321 INFO oslo_service.periodic_task [req-275f9bf3-2513-49fe-b6e1-3066412e520c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:17.045 539305 INFO oslo_service.periodic_task [req-ba3d6764-6c6d-4e36-88e9-cb41fdec7d3d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:17.050 539303 INFO oslo_service.periodic_task [req-ed576681-4c19-4af2-bed1-1ba44eef2ffd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:17.068 539247 INFO oslo_service.periodic_task [req-3bda923a-f7d8-4ae6-a21e-9c011b7ceca8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:17.087 539277 INFO oslo_service.periodic_task [req-560fa639-c010-43da-937b-3d58a94e562c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:17.096 539281 INFO oslo_service.periodic_task [req-70125bed-3cba-4260-9098-4c217d777bdb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:17.111 539289 INFO oslo_service.periodic_task [req-d8a61b88-4bf9-48de-b6d0-44962d12bb4a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:17.150 539317 INFO oslo_service.periodic_task [req-6dd6e024-f19f-44c8-ac58-09437549d1c7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:17.167 539313 INFO oslo_service.periodic_task [req-d52e0d23-f269-4510-be18-51e63f9e5970 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:17.200 539269 INFO oslo_service.periodic_task [req-6954166a-93d4-43d1-b545-322bf0e69653 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:17.219 539297 INFO oslo_service.periodic_task [req-ee04dbe0-8ee7-4cb7-8a5f-3e30309180e4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:17.222 539319 INFO oslo_service.periodic_task [req-a7b4ccd9-67a3-4d6c-ad4e-a7538f8aaa0c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:17.231 539285 INFO oslo_service.periodic_task [req-bb89d25a-dcf9-4271-add5-c6e671a3c9ff - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:17.238 539261 INFO oslo_service.periodic_task [req-65c11c52-5d0f-470c-9948-6cc5a0d6bb38 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:17.239 539335 INFO oslo_service.periodic_task [req-ff9dd6df-4862-416d-8ecc-3a9d4d758ae0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:17.274 539301 INFO oslo_service.periodic_task [req-9ba5888d-fa42-4749-b215-304dc78ba637 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:17.306 539331 INFO oslo_service.periodic_task [req-c7ec8ddc-7f85-4de0-9df8-233c61454ff4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:17.336 539344 INFO oslo_service.periodic_task [req-b3259e2c-e262-4087-a9f5-7c1a2f9485f5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:17.344 539342 INFO oslo_service.periodic_task [req-8b309508-4b8b-4266-97b0-8f2fa83d7171 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:17.350 539309 INFO oslo_service.periodic_task [req-b0de168d-075c-4197-9e1d-f833602b9773 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:17.389 539339 INFO oslo_service.periodic_task [req-64298253-d727-43fc-986e-f10c30094f14 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:17.428 539337 INFO oslo_service.periodic_task [req-6d33d60c-4a51-4ba8-9372-39393c740860 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:17.677 539323 INFO oslo_service.periodic_task [req-28d68125-3438-49d0-8451-51f86f11c101 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
{4} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.635432s] ... ok
{51} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [1.698715s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.389217s] ... ok
{8} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.407364s] ... ok
{10} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.408533s] ... ok
{11} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.505666s] ... ok
{9} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.414768s] ... ok
{7} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.408888s] ... ok
{55} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.447080s] ... ok
{54} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.480856s] ... ok
{15} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [3.068358s] ... ok
{45} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [2.602162s] ... ok
{31} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.706253s] ... ok
{39} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.938725s] ... ok
{38} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.829260s] ... ok
{43} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [3.966618s] ... ok
{46} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.282908s] ... ok
{48} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [4.862243s] ... ok
{30} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [4.978417s] ... ok
{47} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.111875s] ... ok
{37} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [5.293792s] ... ok
{17} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.471044s] ... ok
{27} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.301689s] ... ok
{40} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.231784s] ... ok
{55} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [2.653970s] ... ok
{18} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.178561s] ... ok
{33} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [5.753112s] ... ok
{29} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [5.997105s] ... ok
{22} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.516462s] ... ok
{41} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [6.071540s] ... ok
{36} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.831648s] ... ok
{20} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [6.093286s] ... ok
{54} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [3.148800s] ... ok
{25} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [6.246044s] ... ok
{50} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [6.303654s] ... ok
{46} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [2.025966s] ... ok
{23} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.543263s] ... ok
{16} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [6.582817s] ... ok
{24} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [6.365807s] ... ok
{53} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [6.115441s] ... ok
{52} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [6.098262s] ... ok
{42} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [6.425757s] ... ok
{21} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [6.899333s] ... ok
{49} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [6.567056s] ... ok
{19} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [7.087928s] ... ok
{13} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [7.336487s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/hub.py", line 476, in fire_timers
timer()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/timer.py", line 59, in __call__
cb(*args, **kw)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/greenthread.py", line 221, in main
result = function(*args, **kwargs)
File "/home/ubuntu/nova/nova/utils.py", line 655, in context_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/tests/fixtures/nova.py", line 1661, in test_case_id_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9744, in _live_migration_operation
LOG.error("Live Migration failure: %s", e, instance=instance)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9700, in _live_migration_operation
new_xml_str = libvirt_migrate.get_updated_guest_xml(
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 66, in get_updated_guest_xml
xml_doc = _update_vif_xml(xml_doc, migrate_data, get_vif_config)
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 396, in _update_vif_xml
interface_dev.insert(index + 1, address)
TypeError: Argument 'element' has incorrect type (expected lxml.etree._Element, got NoneType)
{12} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [7.408422s] ... ok
{5} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [5.117409s] ... ok
{6} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [7.713170s] ... ok
{10} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [5.193660s] ... ok
{14} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [7.049218s] ... ok
{52} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [0.730995s] ... ok
{44} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [7.443801s] ... ok
{43} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [3.309491s] ... ok
{35} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [7.483741s] ... ok
{11} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [5.315177s] ... ok
{38} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [3.431542s] ... ok
{36} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [1.741074s] ... ok
{45} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.321954s] ... ok
{25} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [1.570139s] ... ok
{51} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [5.742432s] ... ok
{24} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{23} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [1.428553s] ... ok
{32} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [7.629652s] ... ok
{31} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [4.293621s] ... ok
{9} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [5.758886s] ... ok
{34} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [7.781412s] ... ok
{3} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [8.484311s] ... ok
{55} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [2.795443s] ... ok
{0} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [8.814231s] ... ok
{40} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [3.205774s] ... ok
{26} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [8.506546s] ... ok
{28} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [8.640393s] ... ok
{54} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [2.930211s] ... ok
{20} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.224850s] ... ok
{49} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [2.456476s] ... ok
{3} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [1.206087s] ... ok
{39} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [5.675775s] ... ok
{47} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [4.491308s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "instances" and FROM element "security_groups". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{48} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [4.771133s] ... ok
{6} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [2.408228s] ... ok
{19} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [2.676710s] ... ok
{29} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.796643s] ... ok
{12} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [2.620385s] ... ok
{41} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [3.883489s] ... ok
{4} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [8.188032s] ... ok
{27} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [4.512590s] ... ok
{8} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.766519s] ... ok
{17} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [4.601800s] ... ok
{1} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [10.046751s] ... ok
{16} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.648603s] ... ok
{7} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.675584s] ... ok
{42} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.588730s] ... ok
{14} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [2.876956s] ... ok
{15} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [7.155702s] ... ok
{21} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [3.366604s] ... ok
{13} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [3.302325s] ... ok
{46} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [4.030332s] ... ok
{2} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [10.355970s] ... ok
{33} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [4.826072s] ... ok
{22} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [4.898874s] ... ok
{35} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [3.685528s] ... ok
{44} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [3.875701s] ... ok
{50} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [5.191733s] ... ok
{28} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [2.804303s] ... ok
{53} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [5.041233s] ... ok
{37} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [6.342577s] ... ok
{32} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [3.802840s] ... ok
{34} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [3.747569s] ... ok
{51} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.134421s] ... ok
{30} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.943784s] ... ok
{26} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [3.186949s] ... ok
{52} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [4.797044s] ... ok
{45} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [4.734715s] ... ok
{18} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [6.955585s] ... ok
{53} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.192178s] ... ok
======
Totals
======
Ran: 116 tests in 13.3071 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 550.9182 sec.
==============
Worker Balance
==============
- Worker 0 (1 tests) => 0:00:08.814231
- Worker 1 (1 tests) => 0:00:10.046751
- Worker 2 (1 tests) => 0:00:10.355970
- Worker 3 (2 tests) => 0:00:09.692509
- Worker 4 (2 tests) => 0:00:09.826318
- Worker 5 (2 tests) => 0:00:07.509083
- Worker 6 (2 tests) => 0:00:10.123170
- Worker 7 (2 tests) => 0:00:10.087207
- Worker 8 (2 tests) => 0:00:10.176861
- Worker 9 (2 tests) => 0:00:08.177022
- Worker 10 (2 tests) => 0:00:07.604717
- Worker 11 (2 tests) => 0:00:07.823774
- Worker 12 (2 tests) => 0:00:10.030279
- Worker 13 (2 tests) => 0:00:10.641264
- Worker 14 (2 tests) => 0:00:09.927777
- Worker 15 (2 tests) => 0:00:10.227146
- Worker 16 (2 tests) => 0:00:10.234533
- Worker 17 (2 tests) => 0:00:10.075291
- Worker 18 (2 tests) => 0:00:12.136367
- Worker 19 (2 tests) => 0:00:09.765642
- Worker 20 (2 tests) => 0:00:09.319813
- Worker 21 (2 tests) => 0:00:10.267573
- Worker 22 (2 tests) => 0:00:10.416691
- Worker 23 (2 tests) => 0:00:07.972988
- Worker 24 (2 tests) => 0:00:07.671190
- Worker 25 (2 tests) => 0:00:07.817204
- Worker 26 (2 tests) => 0:00:11.694578
- Worker 27 (2 tests) => 0:00:09.815315
- Worker 28 (2 tests) => 0:00:11.445790
- Worker 29 (2 tests) => 0:00:09.795617
- Worker 30 (2 tests) => 0:00:11.923084
- Worker 31 (2 tests) => 0:00:08.004426
- Worker 32 (2 tests) => 0:00:11.433363
- Worker 33 (2 tests) => 0:00:10.580257
- Worker 34 (2 tests) => 0:00:11.531151
- Worker 35 (2 tests) => 0:00:11.170797
- Worker 36 (2 tests) => 0:00:07.574343
- Worker 37 (2 tests) => 0:00:11.637606
- Worker 38 (2 tests) => 0:00:07.261582
- Worker 39 (2 tests) => 0:00:09.615521
- Worker 40 (2 tests) => 0:00:08.438543
- Worker 41 (2 tests) => 0:00:09.956713
- Worker 42 (2 tests) => 0:00:10.016006
- Worker 43 (2 tests) => 0:00:07.276990
- Worker 44 (2 tests) => 0:00:11.321872
- Worker 45 (3 tests) => 0:00:11.661940
- Worker 46 (3 tests) => 0:00:10.342129
- Worker 47 (2 tests) => 0:00:09.606871
- Worker 48 (2 tests) => 0:00:09.635852
- Worker 49 (2 tests) => 0:00:09.024971
- Worker 50 (2 tests) => 0:00:11.496589
- Worker 51 (3 tests) => 0:00:11.578994
- Worker 52 (3 tests) => 0:00:11.628490
- Worker 53 (3 tests) => 0:00:12.350957
- Worker 54 (3 tests) => 0:00:08.562642
- Worker 55 (3 tests) => 0:00:07.900084
functional-py39 run-test: commands[1] | stestr slowest
Test id Runtime (s)
------------------------------------------------------------------------------------------------------------------------------------------- -----------
nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid 10.356
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 10.047
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True 8.814
nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate 8.640
nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate 8.507
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True 8.484
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False 8.188
nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True 7.781
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.767
nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 7.713
__________________________________________________________________________________ summary __________________________________________________________________________________
functional-py39: commands succeeded
congratulations :)
Tox run 4
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/easy_install.py:160: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
functional-py39 develop-inst-noop: /home/ubuntu/nova
functional-py39 installed: alembic==1.7.6,amqp==5.0.9,appdirs==1.4.4,attrs==21.4.0,automaton==2.5.0,autopage==0.5.0,bandit==1.7.4,bcrypt==3.2.0,cachetools==5.0.0,castellan==3.10.1,certifi==2021.10.8,cffi==1.15.0,charset-normalizer==2.0.12,cliff==3.10.1,cmd2==2.4.0,colorama==0.4.4,coverage==6.3.2,cryptography==36.0.1,cursive==0.2.2,ddt==1.4.4,debtcollector==2.4.0,decorator==5.1.1,dnspython==2.1.0,dogpile.cache==1.1.5,eventlet==0.33.0,extras==1.0.0,fasteners==0.17.3,fixtures==3.0.0,flake8==3.8.4,future==0.18.2,futurist==2.4.0,gabbi==2.4.0,gitdb==4.0.9,GitPython==3.1.27,greenlet==1.1.2,hacking==3.1.0,idna==3.3,iniconfig==1.1.1,iso8601==1.0.2,Jinja2==3.0.3,jmespath==0.10.0,jsonpatch==1.32,jsonpath-rw==1.4.0,jsonpath-rw-ext==1.2.2,jsonpointer==2.2,jsonschema==3.2.0,keystoneauth1==4.5.0,keystonemiddleware==9.4.0,kombu==5.2.4,lxml==4.8.0,Mako==1.1.6,MarkupSafe==2.1.1,mccabe==0.6.1,microversion-parse==1.0.1,mock==4.0.3,msgpack==1.0.3,munch==2.5.0,mypy==0.931,mypy-extensions==0.4.3,netaddr==0.8.0,netifaces==0.11.0,networkx==2.7.1,-e git+https://review.opendev.org/openstack/nova@d43538712c034023bdb3e25cd7adfdee409ed596#egg=nova,numpy==1.22.3,openstack-placement==6.0.0,openstacksdk==0.61.0,os-brick==5.2.0,os-client-config==2.1.0,os-resource-classes==1.1.0,os-service-types==1.7.0,os-traits==2.7.0,os-vif==2.7.1,os-win==5.6.0,osc-lib==2.5.0,oslo.cache==2.10.1,oslo.concurrency==4.5.0,oslo.config==8.8.0,oslo.context==4.1.0,oslo.db==11.2.0,oslo.i18n==5.1.0,oslo.log==4.7.0,oslo.messaging==12.13.0,oslo.metrics==0.4.0,oslo.middleware==4.5.1,oslo.policy==3.11.0,oslo.privsep==2.7.0,oslo.reports==2.3.0,oslo.rootwrap==6.3.1,oslo.serialization==4.3.0,oslo.service==2.8.0,oslo.upgradecheck==1.5.0,oslo.utils==4.12.2,oslo.versionedobjects==2.6.0,oslotest==4.5.0,osprofiler==3.4.2,ovs==2.16.0,ovsdbapp==1.15.1,packaging==21.3,paramiko==2.8.1,Paste==3.5.0,PasteDeploy==2.1.1,pbr==5.8.1,pluggy==1.0.0,ply==3.11,prettytable==3.2.0,prometheus-client==0.13.1,psutil==5.9.0,psycopg2-binary==2.9.3,py==1.11.0,pycadf==3.1.1,pycodestyle==2.6.0,pycparser==2.21,pydot==1.4.2,pyflakes==2.2.0,pyinotify==0.9.6,PyMySQL==1.0.2,PyNaCl==1.5.0,pyOpenSSL==22.0.0,pyparsing==3.0.7,pyperclip==1.8.2,pyroute2==0.6.6,pyroute2.core==0.6.6,pyroute2.ethtool==0.6.6,pyroute2.ipdb==0.6.6,pyroute2.ipset==0.6.6,pyroute2.ndb==0.6.6,pyroute2.nftables==0.6.6,pyroute2.nslink==0.6.6,pyrsistent==0.18.1,pytest==7.0.1,python-barbicanclient==5.3.0,python-cinderclient==8.3.0,python-dateutil==2.8.2,python-glanceclient==3.6.0,python-ironicclient==4.11.0,python-keystoneclient==4.4.0,python-neutronclient==7.8.0,python-subunit==1.4.0,pytz==2021.3,PyYAML==6.0,repoze.lru==0.7,requests==2.27.1,requests-mock==1.9.3,requestsexceptions==1.4.0,retrying==1.3.3,rfc3986==1.5.0,Routes==2.5.1,simplejson==3.17.6,six==1.16.0,smmap==5.0.0,sortedcontainers==2.4.0,SQLAlchemy==1.4.31,sqlalchemy-migrate==0.13.0,sqlparse==0.4.2,statsd==3.3.0,stestr==3.2.1,stevedore==3.5.0,taskflow==4.6.4,Tempita==0.5.2,tenacity==6.3.1,testresources==2.0.1,testscenarios==0.5.0,testtools==2.5.0,tomli==2.0.1,tooz==2.10.1,types-cryptography==3.3.15,types-enum34==1.1.8,types-ipaddress==1.0.8,types-paramiko==2.8.13,typing_extensions==4.1.1,urllib3==1.26.8,vine==5.0.0,voluptuous==0.12.2,warlock==1.3.3,wcwidth==0.2.5,WebOb==1.8.7,websockify==0.10.0,wrapt==1.13.3,wsgi-intercept==1.9.3,yappi==1.3.3
functional-py39 run-test-pre: PYTHONHASHSEED='1361072324'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
2022-03-15 18:55:49.167 539972 INFO oslo_service.periodic_task [req-d7ae467e-48e2-437d-b6ff-61521c1a0760 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.187 539960 INFO oslo_service.periodic_task [req-cf33f7a8-258e-4358-af96-cc3f9400aea3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.211 539982 INFO oslo_service.periodic_task [req-90e47660-0e85-4f9c-a34c-bfe6c96e2e4e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.215 539970 INFO oslo_service.periodic_task [req-a9e4235d-f529-4834-a96b-43c437544b12 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.249 539964 INFO oslo_service.periodic_task [req-ac371b4c-f438-4e62-a727-d2a831aab3b4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.311 540022 INFO oslo_service.periodic_task [req-661c048f-42ed-4131-9ae6-fbe16a464cc7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.315 540018 INFO oslo_service.periodic_task [req-0605e506-dcf8-4596-aa1e-42a16af25b7a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.317 540016 INFO oslo_service.periodic_task [req-67f7f9fe-dcc4-4e9a-90a9-3184b327dfa7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.351 540012 INFO oslo_service.periodic_task [req-0f17e00a-3419-482d-8e1c-95e7da4bdda5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.365 540014 INFO oslo_service.periodic_task [req-380a0eb7-4453-4c20-9282-80a3f688fa04 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.382 539986 INFO oslo_service.periodic_task [req-d846cdcc-dcb6-4788-b9f9-9c0333ca3d83 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.390 539976 INFO oslo_service.periodic_task [req-8f4b07bb-8b6e-4940-a636-12cbc073b027 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.391 540000 INFO oslo_service.periodic_task [req-d97de5b9-88cc-4e15-830e-22cd3db1fd07 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.400 540002 INFO oslo_service.periodic_task [req-614d3fb9-2f2a-454f-82b2-fd5856bc9821 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.402 540020 INFO oslo_service.periodic_task [req-5cdab87a-63ae-4241-a5cb-3a4a7815f5d7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.407 540004 INFO oslo_service.periodic_task [req-540adb5f-72a1-4c7e-9cfc-0853d63669da - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.456 539962 INFO oslo_service.periodic_task [req-e6c0fd57-db21-4f06-83be-71bf5cedcc0f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.474 540062 INFO oslo_service.periodic_task [req-1f088655-eb95-4771-b651-76d6615b5b1d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.479 540040 INFO oslo_service.periodic_task [req-1e436d12-83e1-4faa-9ae0-7db84f37da11 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.498 540030 INFO oslo_service.periodic_task [req-9c199a5a-e6d9-48d4-92cc-1f86a7b5f963 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.502 540044 INFO oslo_service.periodic_task [req-8cf116d0-d08a-4da5-869a-8bb10a82262d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.503 539978 INFO oslo_service.periodic_task [req-2200a4b1-14f6-44cf-b2d8-b3f9e7f836ad - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.511 540024 INFO oslo_service.periodic_task [req-0ced1bd9-804c-4b4d-8cec-d75bf3a2343d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.512 540034 INFO oslo_service.periodic_task [req-91148670-0ed8-4739-b8ce-830362e71863 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.527 540061 INFO oslo_service.periodic_task [req-c538ccb0-4512-4321-bc5c-cf613e7bfa64 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.532 540069 INFO oslo_service.periodic_task [req-439ee1c3-558e-4af4-997d-13858cccef95 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.536 540056 INFO oslo_service.periodic_task [req-92276704-7194-4a90-851c-c0354d429efc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.549 540036 INFO oslo_service.periodic_task [req-e0faa5af-e0f7-4dd1-a050-fd51e7e36981 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.553 539992 INFO oslo_service.periodic_task [req-1ac072ed-f573-426a-8f94-8d3dc331ae17 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.557 540008 INFO oslo_service.periodic_task [req-6df0cad9-7618-467b-9484-982bc81a83b6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.570 539974 INFO oslo_service.periodic_task [req-4b372b5f-8314-4203-8210-9f7141b61ed6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.576 539968 INFO oslo_service.periodic_task [req-fbfc78f8-6e07-4c89-a2c4-a510507e88b9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.587 539998 INFO oslo_service.periodic_task [req-8501c427-5af9-4842-9b6d-6340b5f900d0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.607 539980 INFO oslo_service.periodic_task [req-1faa428a-40b2-4263-8fae-765a383aa888 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.609 540071 INFO oslo_service.periodic_task [req-049d53f4-1a7a-4612-904c-662ac2ec8634 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.615 539990 INFO oslo_service.periodic_task [req-07252471-7aea-4213-a831-22fc4551bc1f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.617 540054 INFO oslo_service.periodic_task [req-55903ae6-6c9e-403c-a08c-645fca067cae - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.621 540058 INFO oslo_service.periodic_task [req-8b5b5710-2cc8-4d63-8456-6af9263c97d0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.620 540048 INFO oslo_service.periodic_task [req-512c2358-9ae8-4cda-9cda-0f8cdad01921 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.614 539966 INFO oslo_service.periodic_task [req-5ec0e6ee-3c70-4e2b-9924-8f0575c90728 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.642 540032 INFO oslo_service.periodic_task [req-ac032b09-c994-4700-b2fc-624b1211e1b2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.619 539994 INFO oslo_service.periodic_task [req-92cd32f5-c127-4b2e-8a05-e3cdf638aaf5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.653 540038 INFO oslo_service.periodic_task [req-71157900-447a-4867-86b2-cdb55c684e43 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.665 540010 INFO oslo_service.periodic_task [req-0f4f8fa8-a2fa-4b52-a503-a5f1c7f4a2a8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.686 539984 INFO oslo_service.periodic_task [req-186f506f-b5ab-4b1f-9fb5-828709a81f13 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.727 540046 INFO oslo_service.periodic_task [req-7d2e25c7-fa94-4e39-8231-db73bea726cc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.731 540026 INFO oslo_service.periodic_task [req-8a4c184b-0553-4c3a-b221-fdce4aad271f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.771 540006 INFO oslo_service.periodic_task [req-645d4102-37d2-49d1-8b23-8a5fbfba47fa - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.806 540064 INFO oslo_service.periodic_task [req-860e2673-3aa4-475a-b7ef-4563c26f7b71 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.816 540042 INFO oslo_service.periodic_task [req-2fc66bef-518b-4c86-ae23-e36a2f2639d4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.863 540052 INFO oslo_service.periodic_task [req-1e0f14f4-8fa4-4ead-a94f-d13322460def - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.893 540050 INFO oslo_service.periodic_task [req-2f87adb6-3c9e-4e89-ae7f-89a322700c2b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:49.978 539996 INFO oslo_service.periodic_task [req-a4673d9b-e63f-43b4-8f18-2245c1b0f300 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:50.010 539988 INFO oslo_service.periodic_task [req-4e550800-f7af-4b61-8beb-01539dada32b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:50.050 540067 INFO oslo_service.periodic_task [req-3381a752-2205-4a8a-8afe-f1384743a8b2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:55:50.050 540028 INFO oslo_service.periodic_task [req-cd6c1c59-461e-4fb7-9904-b0c3d2452743 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
{2} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.933250s] ... ok
{3} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [1.616487s] ... ok
{6} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.403852s] ... ok
{11} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.413066s] ... ok
{16} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [2.356085s] ... ok
{9} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.432333s] ... ok
{7} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.435956s] ... ok
{10} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.502458s] ... ok
{15} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.515085s] ... ok
{12} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.731902s] ... ok
{14} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.369878s] ... ok
{5} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [3.714948s] ... ok
{42} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.461273s] ... ok
{40} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [4.008392s] ... ok
{43} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.928998s] ... ok
{36} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.831279s] ... ok
{47} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.053678s] ... ok
{44} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [4.084882s] ... ok
{20} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [4.687054s] ... ok
{25} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [4.450752s] ... ok
{8} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [4.858191s] ... ok
{30} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [4.969794s] ... ok
{54} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [5.031031s] ... ok
{50} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.132361s] ... ok
{48} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.271563s] ... ok
{19} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [5.330924s] ... ok
{32} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.444435s] ... ok
{45} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.095420s] ... ok
{27} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.696325s] ... ok
{43} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [1.485478s] ... ok
{41} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.386101s] ... ok
{35} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.749143s] ... ok
{44} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{31} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [6.072530s] ... ok
{29} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [6.143108s] ... ok
{37} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [6.012390s] ... ok
{26} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [6.470199s] ... ok
{28} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [6.554614s] ... ok
{51} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [6.420043s] ... ok
{33} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [6.211681s] ... ok
{24} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.398730s] ... ok
{52} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [6.175628s] ... ok
{21} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [6.719934s] ... ok
{34} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [6.148317s] ... ok
{38} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [6.766191s] ... ok
{22} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [6.995105s] ... ok
{39} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [6.960067s] ... ok
{40} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [3.200660s] ... ok
{17} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [7.184481s] ... ok
{13} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [7.470500s] ... ok
{23} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [7.155644s] ... ok
{24} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [1.162106s] ... ok
{46} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [7.261587s] ... ok
{18} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [7.172313s] ... ok
{9} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [5.292351s] ... ok
{15} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [5.085498s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/hub.py", line 476, in fire_timers
timer()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/timer.py", line 59, in __call__
cb(*args, **kw)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/greenthread.py", line 221, in main
result = function(*args, **kwargs)
File "/home/ubuntu/nova/nova/utils.py", line 655, in context_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/tests/fixtures/nova.py", line 1661, in test_case_id_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9744, in _live_migration_operation
LOG.error("Live Migration failure: %s", e, instance=instance)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9700, in _live_migration_operation
new_xml_str = libvirt_migrate.get_updated_guest_xml(
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 66, in get_updated_guest_xml
xml_doc = _update_vif_xml(xml_doc, migrate_data, get_vif_config)
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 396, in _update_vif_xml
interface_dev.insert(index + 1, address)
TypeError: Argument 'element' has incorrect type (expected lxml.etree._Element, got NoneType)
{53} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [7.177658s] ... ok
{55} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [7.763925s] ... ok
{7} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [5.442398s] ... ok
{49} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [7.874948s] ... ok
{11} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [5.945095s] ... ok
{12} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [5.353667s] ... ok
{40} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [1.200821s] ... ok
{2} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [6.816725s] ... ok
{42} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [5.063968s] ... ok
{3} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [6.804708s] ... ok
{14} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [5.718819s] ... ok
{46} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.145168s] ... ok
{4} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [8.583617s] ... ok
{29} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [3.020064s] ... ok
{36} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [4.872227s] ... ok
{0} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.473214s] ... ok
{43} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [3.586746s] ... ok
{6} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [7.215955s] ... ok
{16} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [6.919462s] ... ok
{1} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [9.272147s] ... ok
{47} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [5.206564s] ... ok
{50} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [4.253145s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "security_groups", "security_group_instance_association" and FROM element "instances". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{48} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [4.400319s] ... ok
{33} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.258840s] ... ok
{26} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [3.393881s] ... ok
{10} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.081742s] ... ok
{22} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [2.817648s] ... ok
{52} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [3.152276s] ... ok
{32} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [4.350899s] ... ok
{31} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [3.958970s] ... ok
{44} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [4.006599s] ... ok
{45} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [4.396668s] ... ok
{13} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [2.535763s] ... ok
{30} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [5.039410s] ... ok
{28} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.561522s] ... ok
{23} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [2.534514s] ... ok
{25} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [5.490592s] ... ok
{54} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [5.079718s] ... ok
{35} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [4.401754s] ... ok
{34} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.450463s] ... ok
{17} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [2.980398s] ... ok
{41} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.784635s] ... ok
{21} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [3.920590s] ... ok
{45} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.696637s] ... ok
{18} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [3.005974s] ... ok
{5} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [7.271502s] ... ok
{38} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.901046s] ... ok
{37} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [4.851687s] ... ok
{20} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.376346s] ... ok
{4} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [2.281121s] ... ok
{27} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.753777s] ... ok
{55} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [3.519254s] ... ok
{39} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [4.373444s] ... ok
{51} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [5.103041s] ... ok
{53} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [4.125921s] ... ok
{49} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [3.923074s] ... ok
{42} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [3.703130s] ... ok
{19} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [6.883664s] ... ok
{8} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.748032s] ... ok
{46} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [3.985215s] ... ok
======
Totals
======
Ran: 116 tests in 13.1018 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 554.8452 sec.
==============
Worker Balance
==============
- Worker 0 (1 tests) => 0:00:09.473214
- Worker 1 (1 tests) => 0:00:09.272147
- Worker 2 (2 tests) => 0:00:08.752882
- Worker 3 (2 tests) => 0:00:08.423604
- Worker 4 (2 tests) => 0:00:10.865804
- Worker 5 (2 tests) => 0:00:10.987328
- Worker 6 (2 tests) => 0:00:09.622659
- Worker 7 (2 tests) => 0:00:07.881317
- Worker 8 (2 tests) => 0:00:12.608140
- Worker 9 (2 tests) => 0:00:07.727399
- Worker 10 (2 tests) => 0:00:09.587125
- Worker 11 (2 tests) => 0:00:08.360099
- Worker 12 (2 tests) => 0:00:08.088196
- Worker 13 (2 tests) => 0:00:10.007752
- Worker 14 (2 tests) => 0:00:08.090401
- Worker 15 (2 tests) => 0:00:07.602331
- Worker 16 (2 tests) => 0:00:09.277629
- Worker 17 (2 tests) => 0:00:10.166194
- Worker 18 (2 tests) => 0:00:10.179522
- Worker 19 (2 tests) => 0:00:12.215567
- Worker 20 (2 tests) => 0:00:11.064301
- Worker 21 (2 tests) => 0:00:10.642369
- Worker 22 (2 tests) => 0:00:09.813864
- Worker 23 (2 tests) => 0:00:09.692090
- Worker 24 (2 tests) => 0:00:07.562047
- Worker 25 (2 tests) => 0:00:09.942342
- Worker 26 (2 tests) => 0:00:09.865408
- Worker 27 (2 tests) => 0:00:11.453532
- Worker 28 (2 tests) => 0:00:10.117984
- Worker 29 (2 tests) => 0:00:09.164315
- Worker 30 (2 tests) => 0:00:10.010327
- Worker 31 (2 tests) => 0:00:10.032847
- Worker 32 (2 tests) => 0:00:09.797277
- Worker 33 (2 tests) => 0:00:09.472058
- Worker 34 (2 tests) => 0:00:09.600551
- Worker 35 (2 tests) => 0:00:10.152728
- Worker 36 (2 tests) => 0:00:08.705284
- Worker 37 (2 tests) => 0:00:10.865196
- Worker 38 (2 tests) => 0:00:10.668214
- Worker 39 (2 tests) => 0:00:11.334531
- Worker 40 (3 tests) => 0:00:08.412656
- Worker 41 (2 tests) => 0:00:10.173313
- Worker 42 (3 tests) => 0:00:12.230829
- Worker 43 (3 tests) => 0:00:09.003032
- Worker 44 (3 tests) => 0:00:09.711127
- Worker 45 (3 tests) => 0:00:10.191825
- Worker 46 (3 tests) => 0:00:12.394728
- Worker 47 (2 tests) => 0:00:09.262110
- Worker 48 (2 tests) => 0:00:09.673444
- Worker 49 (2 tests) => 0:00:11.800379
- Worker 50 (2 tests) => 0:00:09.386642
- Worker 51 (2 tests) => 0:00:11.525960
- Worker 52 (2 tests) => 0:00:09.329272
- Worker 53 (2 tests) => 0:00:11.305400
- Worker 54 (2 tests) => 0:00:10.113314
- Worker 55 (2 tests) => 0:00:11.285049
functional-py39 run-test: commands[1] | stestr slowest
Test id Runtime (s)
--------------------------------------------------------------------------------------------------------------------------------------------------------------------- -----------
nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid 9.473
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 9.272
nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate 8.584
nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute 7.875
nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure 7.764
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.748
nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists 7.471
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True 7.272
nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail 7.262
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False 7.216
__________________________________________________________________________________ summary __________________________________________________________________________________
functional-py39: commands succeeded
congratulations :)
Tox run 5
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/easy_install.py:160: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
functional-py39 develop-inst-noop: /home/ubuntu/nova
functional-py39 installed: alembic==1.7.6,amqp==5.0.9,appdirs==1.4.4,attrs==21.4.0,automaton==2.5.0,autopage==0.5.0,bandit==1.7.4,bcrypt==3.2.0,cachetools==5.0.0,castellan==3.10.1,certifi==2021.10.8,cffi==1.15.0,charset-normalizer==2.0.12,cliff==3.10.1,cmd2==2.4.0,colorama==0.4.4,coverage==6.3.2,cryptography==36.0.1,cursive==0.2.2,ddt==1.4.4,debtcollector==2.4.0,decorator==5.1.1,dnspython==2.1.0,dogpile.cache==1.1.5,eventlet==0.33.0,extras==1.0.0,fasteners==0.17.3,fixtures==3.0.0,flake8==3.8.4,future==0.18.2,futurist==2.4.0,gabbi==2.4.0,gitdb==4.0.9,GitPython==3.1.27,greenlet==1.1.2,hacking==3.1.0,idna==3.3,iniconfig==1.1.1,iso8601==1.0.2,Jinja2==3.0.3,jmespath==0.10.0,jsonpatch==1.32,jsonpath-rw==1.4.0,jsonpath-rw-ext==1.2.2,jsonpointer==2.2,jsonschema==3.2.0,keystoneauth1==4.5.0,keystonemiddleware==9.4.0,kombu==5.2.4,lxml==4.8.0,Mako==1.1.6,MarkupSafe==2.1.1,mccabe==0.6.1,microversion-parse==1.0.1,mock==4.0.3,msgpack==1.0.3,munch==2.5.0,mypy==0.931,mypy-extensions==0.4.3,netaddr==0.8.0,netifaces==0.11.0,networkx==2.7.1,-e git+https://review.opendev.org/openstack/nova@d43538712c034023bdb3e25cd7adfdee409ed596#egg=nova,numpy==1.22.3,openstack-placement==6.0.0,openstacksdk==0.61.0,os-brick==5.2.0,os-client-config==2.1.0,os-resource-classes==1.1.0,os-service-types==1.7.0,os-traits==2.7.0,os-vif==2.7.1,os-win==5.6.0,osc-lib==2.5.0,oslo.cache==2.10.1,oslo.concurrency==4.5.0,oslo.config==8.8.0,oslo.context==4.1.0,oslo.db==11.2.0,oslo.i18n==5.1.0,oslo.log==4.7.0,oslo.messaging==12.13.0,oslo.metrics==0.4.0,oslo.middleware==4.5.1,oslo.policy==3.11.0,oslo.privsep==2.7.0,oslo.reports==2.3.0,oslo.rootwrap==6.3.1,oslo.serialization==4.3.0,oslo.service==2.8.0,oslo.upgradecheck==1.5.0,oslo.utils==4.12.2,oslo.versionedobjects==2.6.0,oslotest==4.5.0,osprofiler==3.4.2,ovs==2.16.0,ovsdbapp==1.15.1,packaging==21.3,paramiko==2.8.1,Paste==3.5.0,PasteDeploy==2.1.1,pbr==5.8.1,pluggy==1.0.0,ply==3.11,prettytable==3.2.0,prometheus-client==0.13.1,psutil==5.9.0,psycopg2-binary==2.9.3,py==1.11.0,pycadf==3.1.1,pycodestyle==2.6.0,pycparser==2.21,pydot==1.4.2,pyflakes==2.2.0,pyinotify==0.9.6,PyMySQL==1.0.2,PyNaCl==1.5.0,pyOpenSSL==22.0.0,pyparsing==3.0.7,pyperclip==1.8.2,pyroute2==0.6.6,pyroute2.core==0.6.6,pyroute2.ethtool==0.6.6,pyroute2.ipdb==0.6.6,pyroute2.ipset==0.6.6,pyroute2.ndb==0.6.6,pyroute2.nftables==0.6.6,pyroute2.nslink==0.6.6,pyrsistent==0.18.1,pytest==7.0.1,python-barbicanclient==5.3.0,python-cinderclient==8.3.0,python-dateutil==2.8.2,python-glanceclient==3.6.0,python-ironicclient==4.11.0,python-keystoneclient==4.4.0,python-neutronclient==7.8.0,python-subunit==1.4.0,pytz==2021.3,PyYAML==6.0,repoze.lru==0.7,requests==2.27.1,requests-mock==1.9.3,requestsexceptions==1.4.0,retrying==1.3.3,rfc3986==1.5.0,Routes==2.5.1,simplejson==3.17.6,six==1.16.0,smmap==5.0.0,sortedcontainers==2.4.0,SQLAlchemy==1.4.31,sqlalchemy-migrate==0.13.0,sqlparse==0.4.2,statsd==3.3.0,stestr==3.2.1,stevedore==3.5.0,taskflow==4.6.4,Tempita==0.5.2,tenacity==6.3.1,testresources==2.0.1,testscenarios==0.5.0,testtools==2.5.0,tomli==2.0.1,tooz==2.10.1,types-cryptography==3.3.15,types-enum34==1.1.8,types-ipaddress==1.0.8,types-paramiko==2.8.13,typing_extensions==4.1.1,urllib3==1.26.8,vine==5.0.0,voluptuous==0.12.2,warlock==1.3.3,wcwidth==0.2.5,WebOb==1.8.7,websockify==0.10.0,wrapt==1.13.3,wsgi-intercept==1.9.3,yappi==1.3.3
functional-py39 run-test-pre: PYTHONHASHSEED='2552527687'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
2022-03-15 18:56:21.899 540549 INFO oslo_service.periodic_task [req-a0bb073a-2f52-47f7-9d35-f1fa5218798b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:21.991 540561 INFO oslo_service.periodic_task [req-2e40fac7-13aa-4a11-ac69-c6d25e7b938b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.004 540593 INFO oslo_service.periodic_task [req-69f2561b-83cd-4446-9f63-6367fa94978b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.101 540547 INFO oslo_service.periodic_task [req-948f5193-c789-4104-937f-89f648774b0c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.121 540553 INFO oslo_service.periodic_task [req-a9f6757f-3c99-4c16-9553-2f0b8fb4c140 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.126 540551 INFO oslo_service.periodic_task [req-4a90f9cc-2d40-48ad-a413-cb42c5a50ebb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.136 540609 INFO oslo_service.periodic_task [req-b9b1d964-6466-4617-9419-4f801ab8bff0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.150 540541 INFO oslo_service.periodic_task [req-5c24830d-dc38-4a5c-826d-4e10bfb9a8d1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.187 540595 INFO oslo_service.periodic_task [req-4e46fc32-855f-406e-a7bd-31aeecef4e8c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.208 540565 INFO oslo_service.periodic_task [req-0b9a2b6d-0339-46ca-9853-afaac538fe32 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.212 540577 INFO oslo_service.periodic_task [req-9f0f20a4-712c-4979-be5d-4fac32f43833 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.231 540573 INFO oslo_service.periodic_task [req-e9d7b5d7-d518-4eca-8a59-0b991bccb026 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.233 540579 INFO oslo_service.periodic_task [req-c5d231c7-dd8f-4128-b132-80da685f26cf - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.234 540601 INFO oslo_service.periodic_task [req-f23f67ee-de64-47ed-8827-3737d76378e3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.236 540585 INFO oslo_service.periodic_task [req-25604268-b61b-40b6-90d3-cc80b7630f2f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.240 540591 INFO oslo_service.periodic_task [req-7519a2a6-50c3-4be5-bbf3-99848d07f861 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.241 540583 INFO oslo_service.periodic_task [req-8eb8fe51-6f3c-48f0-a760-ba59cbc60b54 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.263 540559 INFO oslo_service.periodic_task [req-a3cecac2-fd97-41c0-aee6-6d267b23fad9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.263 540628 INFO oslo_service.periodic_task [req-8b123a94-e798-403b-943b-5354d5b27745 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.270 540622 INFO oslo_service.periodic_task [req-5165041f-9207-4cf1-9a13-4bdfdb056cfb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.274 540589 INFO oslo_service.periodic_task [req-1fed3f69-2c98-41a5-8f06-0fc7a3aa357e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.281 540557 INFO oslo_service.periodic_task [req-485f058b-9ff2-4b7c-82f6-253d9e272a24 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.293 540650 INFO oslo_service.periodic_task [req-27b18c6b-2eb9-4bed-b867-9dc8ef19cbe3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.293 540567 INFO oslo_service.periodic_task [req-a0a74c69-fac7-422c-914d-46225dde3913 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.308 540543 INFO oslo_service.periodic_task [req-3711e67e-e163-476e-9918-9c837b5cb6df - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.313 540614 INFO oslo_service.periodic_task [req-33fc81d1-7c28-46e6-987f-1d2463c1596b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.316 540605 INFO oslo_service.periodic_task [req-96608715-1c58-41d3-ae10-f9419c9e257d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.329 540644 INFO oslo_service.periodic_task [req-567efa8f-ec90-4bb6-aeca-b005dfe763f0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.336 540607 INFO oslo_service.periodic_task [req-2ca33e1e-0b6e-4844-9332-5bf2f2fc9aeb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.352 540569 INFO oslo_service.periodic_task [req-19fa02e8-4837-47ea-bbe3-8a0897b40d0d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.377 540603 INFO oslo_service.periodic_task [req-1b3eaa89-d21f-44d4-b953-5e2bb6965ed6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.384 540563 INFO oslo_service.periodic_task [req-b12f86e9-b31b-4b6a-8c9a-a89ea9fae6be - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.385 540626 INFO oslo_service.periodic_task [req-1876ed0e-74d1-42ac-8bae-5ad2b3f2586f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.394 540575 INFO oslo_service.periodic_task [req-d19bbddf-5189-48b7-a1cc-d380b6b427a8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.410 540630 INFO oslo_service.periodic_task [req-99b252a2-2ccc-4328-8294-4a1346ecec56 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.420 540555 INFO oslo_service.periodic_task [req-a55ce346-f511-4d0c-846d-3bd0afb51da4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.430 540616 INFO oslo_service.periodic_task [req-888522a9-e309-45c6-92fe-96a7f290ea55 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.442 540545 INFO oslo_service.periodic_task [req-bd454a4f-2496-494e-b760-01de86c40474 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.446 540571 INFO oslo_service.periodic_task [req-1a51c507-6df9-4146-b273-3858f4b0515b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.484 540634 INFO oslo_service.periodic_task [req-3f402f53-70af-4f39-92d4-38357fd5385a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.492 540653 INFO oslo_service.periodic_task [req-0528ca41-2b52-4f49-b48d-debdc5922c4b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.519 540624 INFO oslo_service.periodic_task [req-1c6d5373-b53f-4440-b155-4b43ca22a43a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.531 540640 INFO oslo_service.periodic_task [req-269efa5d-fed4-4a5e-93f8-09cf1d357400 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.571 540642 INFO oslo_service.periodic_task [req-61129e50-dd2a-4fda-b479-92267a75da39 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.578 540599 INFO oslo_service.periodic_task [req-1af8671d-10ff-4ad5-94b1-b621e2a78bb3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.589 540620 INFO oslo_service.periodic_task [req-dab7b8da-04b7-41e4-a3e5-c9be28c27acd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.591 540581 INFO oslo_service.periodic_task [req-f7512d7d-c219-4414-890d-9853fe256f5a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.652 540612 INFO oslo_service.periodic_task [req-fa66f7d7-8e5a-48fd-8304-708db16ee556 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.670 540636 INFO oslo_service.periodic_task [req-51d40038-8128-43a5-9d79-48f92a6b1470 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.700 540632 INFO oslo_service.periodic_task [req-9866e234-4835-405c-97a7-7c7e33738fb7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.730 540597 INFO oslo_service.periodic_task [req-420d2fc4-29f0-4190-90d2-e3b52cdddca1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.773 540638 INFO oslo_service.periodic_task [req-72b0872e-e8b5-47fe-8cc8-0e891f3b296c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.831 540618 INFO oslo_service.periodic_task [req-3038463c-978a-4fc4-80f1-8a8a6e54e2bf - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.850 540648 INFO oslo_service.periodic_task [req-8ccfd345-a768-49ff-ac52-b5d549550ecb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:22.952 540587 INFO oslo_service.periodic_task [req-83f306b7-739d-4ff2-af95-ccdb7c6f4e8c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:23.102 540646 INFO oslo_service.periodic_task [req-c8da3801-aa7b-43ba-9596-418dcd11dcad - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
{3} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.671337s] ... ok
{10} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.396117s] ... ok
{5} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [2.361818s] ... ok
{6} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.370488s] ... ok
{12} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.461858s] ... ok
{9} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.424990s] ... ok
{8} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.443591s] ... ok
{11} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.404517s] ... ok
{7} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.395672s] ... ok
{15} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.469014s] ... ok
{25} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.481920s] ... ok
{4} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [3.879542s] ... ok
{2} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{31} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.832378s] ... ok
{40} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.132549s] ... ok
{39} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.972954s] ... ok
{41} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [4.046060s] ... ok
{35} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.958247s] ... ok
{16} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [4.445253s] ... ok
{14} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [4.393811s] ... ok
{18} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [4.586060s] ... ok
{17} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [4.535525s] ... ok
{49} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [4.517036s] ... ok
{27} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [5.258328s] ... ok
{19} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [5.234579s] ... ok
{29} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [4.910011s] ... ok
{55} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [4.975766s] ... ok
{21} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.301845s] ... ok
{53} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [4.728105s] ... ok
{46} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.203629s] ... ok
{38} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [4.873762s] ... ok
{36} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.469266s] ... ok
{23} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [4.898869s] ... ok
{42} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.503651s] ... ok
{50} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.348912s] ... ok
{48} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.126061s] ... ok
{28} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.192521s] ... ok
{39} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [1.528957s] ... ok
{43} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [5.828812s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "instances" and FROM element "security_groups". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{54} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [5.823300s] ... ok
{44} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [5.912698s] ... ok
{26} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.486909s] ... ok
{33} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [6.217132s] ... ok
{30} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [6.353571s] ... ok
{32} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [6.365261s] ... ok
{47} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [6.091540s] ... ok
{22} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [6.636682s] ... ok
{10} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [4.851541s] ... ok
{52} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [6.140428s] ... ok
{13} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [7.044254s] ... ok
{42} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.576146s] ... ok
{15} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [4.558432s] ... ok
{51} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [7.170277s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/hub.py", line 476, in fire_timers
timer()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/timer.py", line 59, in __call__
cb(*args, **kw)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/greenthread.py", line 221, in main
result = function(*args, **kwargs)
File "/home/ubuntu/nova/nova/utils.py", line 655, in context_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/tests/fixtures/nova.py", line 1661, in test_case_id_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9744, in _live_migration_operation
LOG.error("Live Migration failure: %s", e, instance=instance)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9700, in _live_migration_operation
new_xml_str = libvirt_migrate.get_updated_guest_xml(
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 66, in get_updated_guest_xml
xml_doc = _update_vif_xml(xml_doc, migrate_data, get_vif_config)
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 396, in _update_vif_xml
interface_dev.insert(index + 1, address)
TypeError: Argument 'element' has incorrect type (expected lxml.etree._Element, got NoneType)
{24} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [7.419205s] ... ok
{37} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [7.286555s] ... ok
{40} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [3.427423s] ... ok
{34} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [7.700149s] ... ok
{25} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [4.172691s] ... ok
{45} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [7.284925s] ... ok
{12} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [5.382207s] ... ok
{11} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [5.330705s] ... ok
{6} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [5.692806s] ... ok
{8} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [5.467659s] ... ok
{31} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [4.004363s] ... ok
{3} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [6.578075s] ... ok
{30} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [2.082339s] ... ok
{20} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [8.239581s] ... ok
{40} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [1.141951s] ... ok
{55} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [3.485259s] ... ok
{36} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [3.283116s] ... ok
{50} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [3.180394s] ... ok
{38} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [3.571345s] ... ok
{44} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [3.079691s] ... ok
{9} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [6.797308s] ... ok
{5} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.078529s] ... ok
{1} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [9.285794s] ... ok
{1} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [0.241658s] ... ok
{46} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [4.162412s] ... ok
{4} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [6.070084s] ... ok
{41} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [5.486069s] ... ok
{7} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [7.292897s] ... ok
{13} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [2.812731s] ... ok
{0} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [10.057444s] ... ok
{29} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [4.748904s] ... ok
{35} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.641435s] ... ok
{32} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.592584s] ... ok
{21} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [4.788806s] ... ok
{16} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [5.730561s] ... ok
{2} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [6.592626s] ... ok
{48} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [4.563362s] ... ok
{28} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [4.563734s] ... ok
{23} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [4.775200s] ... ok
{39} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [4.647193s] ... ok
{24} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.050853s] ... ok
{22} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.922163s] ... ok
{49} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [5.824166s] ... ok
{53} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [5.341868s] ... ok
{41} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.919085s] ... ok
{33} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [4.505922s] ... ok
{26} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [4.708426s] ... ok
{0} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [1.040656s] ... ok
{43} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [5.185876s] ... ok
{45} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [3.505711s] ... ok
{51} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.159031s] ... ok
{47} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [4.947849s] ... ok
{52} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [4.470475s] ... ok
{27} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.318401s] ... ok
{20} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [2.957234s] ... ok
{54} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [5.869142s] ... ok
{14} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.271966s] ... ok
{37} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.330176s] ... ok
{18} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [7.319160s] ... ok
{34} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.319821s] ... ok
{17} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [7.309446s] ... ok
{42} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [4.811090s] ... ok
{19} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [7.253533s] ... ok
======
Totals
======
Ran: 116 tests in 12.8257 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 553.2441 sec.
==============
Worker Balance
==============
- Worker 0 (2 tests) => 0:00:11.099529
- Worker 1 (2 tests) => 0:00:09.528707
- Worker 2 (2 tests) => 0:00:09.964077
- Worker 3 (2 tests) => 0:00:08.251844
- Worker 4 (2 tests) => 0:00:09.951366
- Worker 5 (2 tests) => 0:00:09.441873
- Worker 6 (2 tests) => 0:00:08.065488
- Worker 7 (2 tests) => 0:00:09.691509
- Worker 8 (2 tests) => 0:00:07.913492
- Worker 9 (2 tests) => 0:00:09.225165
- Worker 10 (2 tests) => 0:00:07.250360
- Worker 11 (2 tests) => 0:00:07.737627
- Worker 12 (2 tests) => 0:00:07.846111
- Worker 13 (2 tests) => 0:00:09.858793
- Worker 14 (2 tests) => 0:00:11.666467
- Worker 15 (2 tests) => 0:00:07.028894
- Worker 16 (2 tests) => 0:00:10.176674
- Worker 17 (2 tests) => 0:00:11.846302
- Worker 18 (2 tests) => 0:00:11.907566
- Worker 19 (2 tests) => 0:00:12.489449
- Worker 20 (2 tests) => 0:00:11.198465
- Worker 21 (2 tests) => 0:00:10.093236
- Worker 22 (2 tests) => 0:00:10.560073
- Worker 23 (2 tests) => 0:00:09.675023
- Worker 24 (2 tests) => 0:00:10.472180
- Worker 25 (2 tests) => 0:00:07.655426
- Worker 26 (2 tests) => 0:00:11.197838
- Worker 27 (2 tests) => 0:00:11.578058
- Worker 28 (2 tests) => 0:00:09.757386
- Worker 29 (2 tests) => 0:00:09.660111
- Worker 30 (2 tests) => 0:00:08.437550
- Worker 31 (2 tests) => 0:00:07.838207
- Worker 32 (2 tests) => 0:00:09.959807
- Worker 33 (2 tests) => 0:00:10.724348
- Worker 34 (2 tests) => 0:00:12.021840
- Worker 35 (2 tests) => 0:00:09.602005
- Worker 36 (2 tests) => 0:00:08.753947
- Worker 37 (2 tests) => 0:00:11.618631
- Worker 38 (2 tests) => 0:00:08.446799
- Worker 39 (3 tests) => 0:00:10.151524
- Worker 40 (3 tests) => 0:00:08.704149
- Worker 41 (3 tests) => 0:00:10.454900
- Worker 42 (3 tests) => 0:00:11.894067
- Worker 43 (2 tests) => 0:00:11.015815
- Worker 44 (2 tests) => 0:00:08.994258
- Worker 45 (2 tests) => 0:00:10.792022
- Worker 46 (2 tests) => 0:00:09.367986
- Worker 47 (2 tests) => 0:00:11.040052
- Worker 48 (2 tests) => 0:00:09.691265
- Worker 49 (2 tests) => 0:00:10.342377
- Worker 50 (2 tests) => 0:00:08.531582
- Worker 51 (2 tests) => 0:00:11.332244
- Worker 52 (2 tests) => 0:00:10.612001
- Worker 53 (2 tests) => 0:00:10.071145
- Worker 54 (2 tests) => 0:00:11.694210
- Worker 55 (2 tests) => 0:00:08.462035
functional-py39 run-test: commands[1] | stestr slowest
Test id Runtime (s)
------------------------------------------------------------------------------------------------------------------------------------------ -----------
nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid 10.057
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 9.286
nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate 8.240
nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change 7.700
nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags 7.419
nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host 7.319
nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host 7.309
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True 7.293
nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True 7.287
nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 7.285
__________________________________________________________________________________ summary __________________________________________________________________________________
functional-py39: commands succeeded
congratulations :)
Tox run 6
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/easy_install.py:160: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
functional-py39 develop-inst-noop: /home/ubuntu/nova
functional-py39 installed: alembic==1.7.6,amqp==5.0.9,appdirs==1.4.4,attrs==21.4.0,automaton==2.5.0,autopage==0.5.0,bandit==1.7.4,bcrypt==3.2.0,cachetools==5.0.0,castellan==3.10.1,certifi==2021.10.8,cffi==1.15.0,charset-normalizer==2.0.12,cliff==3.10.1,cmd2==2.4.0,colorama==0.4.4,coverage==6.3.2,cryptography==36.0.1,cursive==0.2.2,ddt==1.4.4,debtcollector==2.4.0,decorator==5.1.1,dnspython==2.1.0,dogpile.cache==1.1.5,eventlet==0.33.0,extras==1.0.0,fasteners==0.17.3,fixtures==3.0.0,flake8==3.8.4,future==0.18.2,futurist==2.4.0,gabbi==2.4.0,gitdb==4.0.9,GitPython==3.1.27,greenlet==1.1.2,hacking==3.1.0,idna==3.3,iniconfig==1.1.1,iso8601==1.0.2,Jinja2==3.0.3,jmespath==0.10.0,jsonpatch==1.32,jsonpath-rw==1.4.0,jsonpath-rw-ext==1.2.2,jsonpointer==2.2,jsonschema==3.2.0,keystoneauth1==4.5.0,keystonemiddleware==9.4.0,kombu==5.2.4,lxml==4.8.0,Mako==1.1.6,MarkupSafe==2.1.1,mccabe==0.6.1,microversion-parse==1.0.1,mock==4.0.3,msgpack==1.0.3,munch==2.5.0,mypy==0.931,mypy-extensions==0.4.3,netaddr==0.8.0,netifaces==0.11.0,networkx==2.7.1,-e git+https://review.opendev.org/openstack/nova@d43538712c034023bdb3e25cd7adfdee409ed596#egg=nova,numpy==1.22.3,openstack-placement==6.0.0,openstacksdk==0.61.0,os-brick==5.2.0,os-client-config==2.1.0,os-resource-classes==1.1.0,os-service-types==1.7.0,os-traits==2.7.0,os-vif==2.7.1,os-win==5.6.0,osc-lib==2.5.0,oslo.cache==2.10.1,oslo.concurrency==4.5.0,oslo.config==8.8.0,oslo.context==4.1.0,oslo.db==11.2.0,oslo.i18n==5.1.0,oslo.log==4.7.0,oslo.messaging==12.13.0,oslo.metrics==0.4.0,oslo.middleware==4.5.1,oslo.policy==3.11.0,oslo.privsep==2.7.0,oslo.reports==2.3.0,oslo.rootwrap==6.3.1,oslo.serialization==4.3.0,oslo.service==2.8.0,oslo.upgradecheck==1.5.0,oslo.utils==4.12.2,oslo.versionedobjects==2.6.0,oslotest==4.5.0,osprofiler==3.4.2,ovs==2.16.0,ovsdbapp==1.15.1,packaging==21.3,paramiko==2.8.1,Paste==3.5.0,PasteDeploy==2.1.1,pbr==5.8.1,pluggy==1.0.0,ply==3.11,prettytable==3.2.0,prometheus-client==0.13.1,psutil==5.9.0,psycopg2-binary==2.9.3,py==1.11.0,pycadf==3.1.1,pycodestyle==2.6.0,pycparser==2.21,pydot==1.4.2,pyflakes==2.2.0,pyinotify==0.9.6,PyMySQL==1.0.2,PyNaCl==1.5.0,pyOpenSSL==22.0.0,pyparsing==3.0.7,pyperclip==1.8.2,pyroute2==0.6.6,pyroute2.core==0.6.6,pyroute2.ethtool==0.6.6,pyroute2.ipdb==0.6.6,pyroute2.ipset==0.6.6,pyroute2.ndb==0.6.6,pyroute2.nftables==0.6.6,pyroute2.nslink==0.6.6,pyrsistent==0.18.1,pytest==7.0.1,python-barbicanclient==5.3.0,python-cinderclient==8.3.0,python-dateutil==2.8.2,python-glanceclient==3.6.0,python-ironicclient==4.11.0,python-keystoneclient==4.4.0,python-neutronclient==7.8.0,python-subunit==1.4.0,pytz==2021.3,PyYAML==6.0,repoze.lru==0.7,requests==2.27.1,requests-mock==1.9.3,requestsexceptions==1.4.0,retrying==1.3.3,rfc3986==1.5.0,Routes==2.5.1,simplejson==3.17.6,six==1.16.0,smmap==5.0.0,sortedcontainers==2.4.0,SQLAlchemy==1.4.31,sqlalchemy-migrate==0.13.0,sqlparse==0.4.2,statsd==3.3.0,stestr==3.2.1,stevedore==3.5.0,taskflow==4.6.4,Tempita==0.5.2,tenacity==6.3.1,testresources==2.0.1,testscenarios==0.5.0,testtools==2.5.0,tomli==2.0.1,tooz==2.10.1,types-cryptography==3.3.15,types-enum34==1.1.8,types-ipaddress==1.0.8,types-paramiko==2.8.13,typing_extensions==4.1.1,urllib3==1.26.8,vine==5.0.0,voluptuous==0.12.2,warlock==1.3.3,wcwidth==0.2.5,WebOb==1.8.7,websockify==0.10.0,wrapt==1.13.3,wsgi-intercept==1.9.3,yappi==1.3.3
functional-py39 run-test-pre: PYTHONHASHSEED='2027560687'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
2022-03-15 18:56:53.649 541184 INFO oslo_service.periodic_task [req-95d47e6c-0d2a-4aca-97e5-88308e594177 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:53.665 541192 INFO oslo_service.periodic_task [req-9c6ef5a9-eb56-4fc5-94b4-523a60b805dc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:53.719 541204 INFO oslo_service.periodic_task [req-58beddae-b417-40d9-a239-81b649ae2c2d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:53.726 541180 INFO oslo_service.periodic_task [req-2111bde6-cbcf-4e79-a190-75d869c17b2f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:53.728 541190 INFO oslo_service.periodic_task [req-fadabcce-05fa-401c-824b-fa2f8e141461 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:53.793 541174 INFO oslo_service.periodic_task [req-b9a84d88-dea9-4347-b5c4-33369cf0c615 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:53.806 541234 INFO oslo_service.periodic_task [req-355bda91-0ba3-4d21-b1bb-4743a5a8bfff - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:53.822 541198 INFO oslo_service.periodic_task [req-e375c337-1233-47fe-ae67-69274351559f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:53.852 541212 INFO oslo_service.periodic_task [req-3553c3c6-88e1-4afb-96d6-0787422fc934 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:53.860 541208 INFO oslo_service.periodic_task [req-8d132e1e-456b-4979-afe6-3cb65bbb699f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:53.887 541218 INFO oslo_service.periodic_task [req-bcad617a-2e91-4891-ab56-c667d5c9b29d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:53.903 541186 INFO oslo_service.periodic_task [req-ad3de762-7ed1-40d5-bb67-749b25a3792a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:53.923 541226 INFO oslo_service.periodic_task [req-b144ae6d-13ce-4ec2-bc2c-5f25561f7792 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:53.920 541214 INFO oslo_service.periodic_task [req-7eb1522d-6214-470d-b22f-f95a017ef422 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:53.921 541222 INFO oslo_service.periodic_task [req-7e41c063-2234-42d3-b6c7-6fc7148cde67 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:53.923 541242 INFO oslo_service.periodic_task [req-b19b0a64-649d-43c6-9a3e-7bab18b48ac0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:53.938 541178 INFO oslo_service.periodic_task [req-060dd654-51b6-4ac3-b285-def11ab0476f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:53.964 541230 INFO oslo_service.periodic_task [req-d88d036f-008a-40ae-adc3-38c4f03b1e2c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:53.977 541196 INFO oslo_service.periodic_task [req-8927b0bc-5559-4608-8765-5c5692b1eb32 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:53.980 541200 INFO oslo_service.periodic_task [req-185061d2-357e-4d6f-96ae-e44115ec3314 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.023 541224 INFO oslo_service.periodic_task [req-8cfe1bf4-f1e7-4efa-822f-fdd6933ae010 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.023 541182 INFO oslo_service.periodic_task [req-de43e75c-3717-4e8d-a55b-a3d89e5bee9d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.026 541270 INFO oslo_service.periodic_task [req-6135a7e6-47f8-4e0a-ae69-066d47677d3e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.024 541274 INFO oslo_service.periodic_task [req-5430ebba-c0be-48e3-a962-26284a1d0826 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.036 541210 INFO oslo_service.periodic_task [req-cb668835-2a84-4f6c-a96b-a3ce0822a8ff - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.030 541260 INFO oslo_service.periodic_task [req-ed473674-d8fb-4b56-b3e2-18531c747068 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.032 541228 INFO oslo_service.periodic_task [req-e904134f-74a5-40e0-a0bb-05073e65c4f3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.041 541202 INFO oslo_service.periodic_task [req-eb741acd-95d6-400f-bb40-6e50c55c3675 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.075 541266 INFO oslo_service.periodic_task [req-c451b112-2172-49ec-ae13-1c8e209da738 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.074 541250 INFO oslo_service.periodic_task [req-9b9b17d4-5a76-486d-a5bc-8052d443e50a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.066 541232 INFO oslo_service.periodic_task [req-2511e9be-946e-4c04-a89e-837c4b4c2243 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.068 541194 INFO oslo_service.periodic_task [req-801a712d-3fbd-4e69-84f2-01debb5d49ea - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.083 541248 INFO oslo_service.periodic_task [req-2c6e6f26-5ab7-42aa-aaa0-1cec6c6ae377 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.100 541244 INFO oslo_service.periodic_task [req-2e71967c-3d20-47fd-b0af-6c9f3da4cd2e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.106 541268 INFO oslo_service.periodic_task [req-433227c4-91da-4ea5-bd5d-464c6b837bd3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.112 541272 INFO oslo_service.periodic_task [req-015292f9-ec7a-42a6-9b59-0ef278ff2397 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.117 541258 INFO oslo_service.periodic_task [req-f0b944eb-ea1d-488c-a4c2-5e494dd24337 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.121 541256 INFO oslo_service.periodic_task [req-90f4a157-24e9-44d0-88ec-ad155bcb4ee8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.157 541236 INFO oslo_service.periodic_task [req-4459edf9-d580-4255-a296-41140461ada5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.168 541220 INFO oslo_service.periodic_task [req-73fef6b0-b545-4e52-8a25-1211fda766b9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.182 541281 INFO oslo_service.periodic_task [req-3ab1c45f-a5b1-460d-8b38-828f4cf015f3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.203 541246 INFO oslo_service.periodic_task [req-9ab4f960-4b84-4278-9ae1-565fca14fb53 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.206 541188 INFO oslo_service.periodic_task [req-b911de8b-9030-4c04-9864-f62882c0b398 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.268 541278 INFO oslo_service.periodic_task [req-7f181aab-798e-4dfe-9efc-8bf563b61b90 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.306 541176 INFO oslo_service.periodic_task [req-b2f32e90-03ab-484e-9f81-475fa68f3f9a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.360 541284 INFO oslo_service.periodic_task [req-d71b054f-77aa-4795-b145-f0f8e37ea267 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.381 541283 INFO oslo_service.periodic_task [req-922bd23a-46c1-41d2-81d7-0fb4985cecf7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.435 541206 INFO oslo_service.periodic_task [req-db2ddbb8-4f13-47a2-9718-57c1364523f2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.438 541240 INFO oslo_service.periodic_task [req-5a3e5eb3-bbc6-4ea5-921d-eb8be0d27c3f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.441 541252 INFO oslo_service.periodic_task [req-024c4b4b-dba6-4dae-9bd2-12847a9b97ea - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.442 541254 INFO oslo_service.periodic_task [req-0254ac0a-b1fe-46f8-965a-fb785636b20d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.479 541264 INFO oslo_service.periodic_task [req-0bb171dc-27ed-4bfe-a240-4dcedf1661ce - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.486 541277 INFO oslo_service.periodic_task [req-bc030bf6-f541-4d2b-bc57-2c60345e4ad5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.530 541216 INFO oslo_service.periodic_task [req-cafa5dec-d5a2-49c2-9aa9-84840704341f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.534 541262 INFO oslo_service.periodic_task [req-1791f9da-7465-4547-a837-6ff2abbdca71 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:56:54.770 541238 INFO oslo_service.periodic_task [req-a62e6292-8e65-41d0-8400-ba57f2731f88 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
{2} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.717658s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.373953s] ... ok
{55} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [1.715229s] ... ok
{8} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.371607s] ... ok
{9} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.439964s] ... ok
{12} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.384301s] ... ok
{6} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.463038s] ... ok
{11} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.447238s] ... ok
{7} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.418288s] ... ok
{10} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.561664s] ... ok
{52} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [3.256486s] ... ok
{26} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.710976s] ... ok
{30} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.903264s] ... ok
{29} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.853612s] ... ok
{21} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.537997s] ... ok
{13} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [4.541057s] ... ok
{48} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [4.620487s] ... ok
{33} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.252203s] ... ok
{32} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [4.107942s] ... ok
{50} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [4.878132s] ... ok
{22} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [5.130286s] ... ok
{49} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [4.925551s] ... ok
{53} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [4.921244s] ... ok
{51} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [4.618459s] ... ok
{44} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [4.624274s] ... ok
{24} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [5.261734s] ... ok
{40} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [4.728446s] ... ok
{46} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.170352s] ... ok
{20} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.436972s] ... ok
{43} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.397841s] ... ok
{47} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.381635s] ... ok
{54} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.166649s] ... ok
{45} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [5.125460s] ... ok
{35} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.543103s] ... ok
{34} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [6.047162s] ... ok
{37} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.898149s] ... ok
{25} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [6.043346s] ... ok
{31} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [5.941850s] ... ok
{23} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [6.204919s] ... ok
{36} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [6.271127s] ... ok
{14} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [6.453137s] ... ok
{19} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.808745s] ... ok
{4} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [6.637469s] ... ok
{52} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [3.275127s] ... ok
{27} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [6.823861s] ... ok
{42} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [6.979599s] ... ok
{16} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [6.760815s] ... ok
{12} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [5.026911s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/hub.py", line 476, in fire_timers
timer()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/timer.py", line 59, in __call__
cb(*args, **kw)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/greenthread.py", line 221, in main
result = function(*args, **kwargs)
File "/home/ubuntu/nova/nova/utils.py", line 655, in context_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/tests/fixtures/nova.py", line 1661, in test_case_id_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9744, in _live_migration_operation
LOG.error("Live Migration failure: %s", e, instance=instance)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9700, in _live_migration_operation
new_xml_str = libvirt_migrate.get_updated_guest_xml(
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 66, in get_updated_guest_xml
xml_doc = _update_vif_xml(xml_doc, migrate_data, get_vif_config)
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 396, in _update_vif_xml
interface_dev.insert(index + 1, address)
TypeError: Argument 'element' has incorrect type (expected lxml.etree._Element, got NoneType)
{4} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.598373s] ... ok
{3} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [7.616799s] ... ok
{41} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [7.221401s] ... ok
{55} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [5.351243s] ... ok
{9} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [5.408128s] ... ok
{39} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [7.175582s] ... ok
{8} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [5.613885s] ... ok
{28} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [7.772899s] ... ok
{40} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [2.644457s] ... ok
{38} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [7.782648s] ... ok
{18} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [7.840398s] ... ok
{19} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{29} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [4.294063s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "instances" and FROM element "security_groups". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{21} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [4.239055s] ... ok
{17} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [8.462742s] ... ok
{43} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [2.891398s] ... ok
{2} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [6.947224s] ... ok
{44} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.479470s] ... ok
{12} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [1.489371s] ... ok
{15} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [9.120152s] ... ok
{5} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [6.956704s] ... ok
{30} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [5.286905s] ... ok
{26} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [5.420187s] ... ok
{11} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [6.954308s] ... ok
{6} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [7.009492s] ... ok
{24} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [4.241167s] ... ok
{3} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [2.114987s] ... ok
{0} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.685565s] ... ok
{27} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [2.600272s] ... ok
{1} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [9.187727s] ... ok
{31} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [3.455275s] ... ok
{14} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [3.079587s] ... ok
{25} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.533687s] ... ok
{20} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [4.252596s] ... ok
{35} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [4.010823s] ... ok
{47} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [4.181146s] ... ok
{32} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [4.808930s] ... ok
{50} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [4.788372s] ... ok
{49} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [4.736481s] ... ok
{46} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [4.564318s] ... ok
{7} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [7.242324s] ... ok
{33} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [5.243180s] ... ok
{53} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [4.895940s] ... ok
{51} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [4.932385s] ... ok
{48} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [5.604412s] ... ok
{54} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [4.772326s] ... ok
{1} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [0.891575s] ... ok
{16} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [3.208014s] ... ok
{10} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [8.058662s] ... ok
{39} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [3.088890s] ... ok
{37} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.803499s] ... ok
{54} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.781713s] ... ok
{23} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [4.834553s] ... ok
{17} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [2.946937s] ... ok
{42} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [4.161891s] ... ok
{45} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [5.671669s] ... ok
{36} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [5.065759s] ... ok
{15} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [2.721992s] ... ok
{28} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.857531s] ... ok
{18} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [3.715323s] ... ok
{41} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [4.360134s] ... ok
{34} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.753720s] ... ok
{38} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [3.954450s] ... ok
{22} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.954273s] ... ok
{52} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [5.283897s] ... ok
{36} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [0.556779s] ... ok
{55} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [4.772921s] ... ok
{13} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.757996s] ... ok
======
Totals
======
Ran: 116 tests in 12.6359 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 554.2732 sec.
==============
Worker Balance
==============
- Worker 0 (1 tests) => 0:00:09.685565
- Worker 1 (2 tests) => 0:00:10.081169
- Worker 2 (2 tests) => 0:00:08.668457
- Worker 3 (2 tests) => 0:00:09.733258
- Worker 4 (2 tests) => 0:00:07.237656
- Worker 5 (2 tests) => 0:00:09.333869
- Worker 6 (2 tests) => 0:00:09.475745
- Worker 7 (2 tests) => 0:00:09.662681
- Worker 8 (2 tests) => 0:00:07.988333
- Worker 9 (2 tests) => 0:00:07.850590
- Worker 10 (2 tests) => 0:00:10.622583
- Worker 11 (2 tests) => 0:00:09.404362
- Worker 12 (3 tests) => 0:00:08.903529
- Worker 13 (2 tests) => 0:00:12.299894
- Worker 14 (2 tests) => 0:00:09.535018
- Worker 15 (2 tests) => 0:00:11.844020
- Worker 16 (2 tests) => 0:00:09.969967
- Worker 17 (2 tests) => 0:00:11.411313
- Worker 18 (2 tests) => 0:00:11.557912
- Worker 19 (2 tests) => 0:00:08.213190
- Worker 20 (2 tests) => 0:00:09.691386
- Worker 21 (2 tests) => 0:00:07.777916
- Worker 22 (2 tests) => 0:00:12.087093
- Worker 23 (2 tests) => 0:00:11.040738
- Worker 24 (2 tests) => 0:00:09.504757
- Worker 25 (2 tests) => 0:00:09.578288
- Worker 26 (2 tests) => 0:00:09.132419
- Worker 27 (2 tests) => 0:00:09.425679
- Worker 28 (2 tests) => 0:00:11.632221
- Worker 29 (2 tests) => 0:00:08.149186
- Worker 30 (2 tests) => 0:00:09.191859
- Worker 31 (2 tests) => 0:00:09.398545
- Worker 32 (2 tests) => 0:00:08.918053
- Worker 33 (2 tests) => 0:00:09.496678
- Worker 34 (2 tests) => 0:00:11.802076
- Worker 35 (2 tests) => 0:00:09.556031
- Worker 36 (3 tests) => 0:00:11.897157
- Worker 37 (2 tests) => 0:00:10.704175
- Worker 38 (2 tests) => 0:00:11.739138
- Worker 39 (2 tests) => 0:00:10.266488
- Worker 40 (2 tests) => 0:00:07.374437
- Worker 41 (2 tests) => 0:00:11.583815
- Worker 42 (2 tests) => 0:00:11.142487
- Worker 43 (2 tests) => 0:00:08.291641
- Worker 44 (2 tests) => 0:00:08.104753
- Worker 45 (2 tests) => 0:00:10.798096
- Worker 46 (2 tests) => 0:00:09.736676
- Worker 47 (2 tests) => 0:00:09.564999
- Worker 48 (2 tests) => 0:00:10.226405
- Worker 49 (2 tests) => 0:00:09.663537
- Worker 50 (2 tests) => 0:00:09.668676
- Worker 51 (2 tests) => 0:00:09.551645
- Worker 52 (3 tests) => 0:00:11.817854
- Worker 53 (2 tests) => 0:00:09.818146
- Worker 54 (3 tests) => 0:00:10.723930
- Worker 55 (3 tests) => 0:00:11.842880
functional-py39 run-test: commands[1] | stestr slowest
Test id Runtime (s)
------------------------------------------------------------------------------------------------------------------------------------------------------ -----------
nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid 9.686
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 9.188
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False 9.120
nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate 8.463
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False 8.059
nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute 7.840
nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail 7.783
nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules 7.773
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.758
nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change 7.617
__________________________________________________________________________________ summary __________________________________________________________________________________
functional-py39: commands succeeded
congratulations :)
Tox run 7
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/easy_install.py:160: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
functional-py39 develop-inst-noop: /home/ubuntu/nova
functional-py39 installed: alembic==1.7.6,amqp==5.0.9,appdirs==1.4.4,attrs==21.4.0,automaton==2.5.0,autopage==0.5.0,bandit==1.7.4,bcrypt==3.2.0,cachetools==5.0.0,castellan==3.10.1,certifi==2021.10.8,cffi==1.15.0,charset-normalizer==2.0.12,cliff==3.10.1,cmd2==2.4.0,colorama==0.4.4,coverage==6.3.2,cryptography==36.0.1,cursive==0.2.2,ddt==1.4.4,debtcollector==2.4.0,decorator==5.1.1,dnspython==2.1.0,dogpile.cache==1.1.5,eventlet==0.33.0,extras==1.0.0,fasteners==0.17.3,fixtures==3.0.0,flake8==3.8.4,future==0.18.2,futurist==2.4.0,gabbi==2.4.0,gitdb==4.0.9,GitPython==3.1.27,greenlet==1.1.2,hacking==3.1.0,idna==3.3,iniconfig==1.1.1,iso8601==1.0.2,Jinja2==3.0.3,jmespath==0.10.0,jsonpatch==1.32,jsonpath-rw==1.4.0,jsonpath-rw-ext==1.2.2,jsonpointer==2.2,jsonschema==3.2.0,keystoneauth1==4.5.0,keystonemiddleware==9.4.0,kombu==5.2.4,lxml==4.8.0,Mako==1.1.6,MarkupSafe==2.1.1,mccabe==0.6.1,microversion-parse==1.0.1,mock==4.0.3,msgpack==1.0.3,munch==2.5.0,mypy==0.931,mypy-extensions==0.4.3,netaddr==0.8.0,netifaces==0.11.0,networkx==2.7.1,-e git+https://review.opendev.org/openstack/nova@d43538712c034023bdb3e25cd7adfdee409ed596#egg=nova,numpy==1.22.3,openstack-placement==6.0.0,openstacksdk==0.61.0,os-brick==5.2.0,os-client-config==2.1.0,os-resource-classes==1.1.0,os-service-types==1.7.0,os-traits==2.7.0,os-vif==2.7.1,os-win==5.6.0,osc-lib==2.5.0,oslo.cache==2.10.1,oslo.concurrency==4.5.0,oslo.config==8.8.0,oslo.context==4.1.0,oslo.db==11.2.0,oslo.i18n==5.1.0,oslo.log==4.7.0,oslo.messaging==12.13.0,oslo.metrics==0.4.0,oslo.middleware==4.5.1,oslo.policy==3.11.0,oslo.privsep==2.7.0,oslo.reports==2.3.0,oslo.rootwrap==6.3.1,oslo.serialization==4.3.0,oslo.service==2.8.0,oslo.upgradecheck==1.5.0,oslo.utils==4.12.2,oslo.versionedobjects==2.6.0,oslotest==4.5.0,osprofiler==3.4.2,ovs==2.16.0,ovsdbapp==1.15.1,packaging==21.3,paramiko==2.8.1,Paste==3.5.0,PasteDeploy==2.1.1,pbr==5.8.1,pluggy==1.0.0,ply==3.11,prettytable==3.2.0,prometheus-client==0.13.1,psutil==5.9.0,psycopg2-binary==2.9.3,py==1.11.0,pycadf==3.1.1,pycodestyle==2.6.0,pycparser==2.21,pydot==1.4.2,pyflakes==2.2.0,pyinotify==0.9.6,PyMySQL==1.0.2,PyNaCl==1.5.0,pyOpenSSL==22.0.0,pyparsing==3.0.7,pyperclip==1.8.2,pyroute2==0.6.6,pyroute2.core==0.6.6,pyroute2.ethtool==0.6.6,pyroute2.ipdb==0.6.6,pyroute2.ipset==0.6.6,pyroute2.ndb==0.6.6,pyroute2.nftables==0.6.6,pyroute2.nslink==0.6.6,pyrsistent==0.18.1,pytest==7.0.1,python-barbicanclient==5.3.0,python-cinderclient==8.3.0,python-dateutil==2.8.2,python-glanceclient==3.6.0,python-ironicclient==4.11.0,python-keystoneclient==4.4.0,python-neutronclient==7.8.0,python-subunit==1.4.0,pytz==2021.3,PyYAML==6.0,repoze.lru==0.7,requests==2.27.1,requests-mock==1.9.3,requestsexceptions==1.4.0,retrying==1.3.3,rfc3986==1.5.0,Routes==2.5.1,simplejson==3.17.6,six==1.16.0,smmap==5.0.0,sortedcontainers==2.4.0,SQLAlchemy==1.4.31,sqlalchemy-migrate==0.13.0,sqlparse==0.4.2,statsd==3.3.0,stestr==3.2.1,stevedore==3.5.0,taskflow==4.6.4,Tempita==0.5.2,tenacity==6.3.1,testresources==2.0.1,testscenarios==0.5.0,testtools==2.5.0,tomli==2.0.1,tooz==2.10.1,types-cryptography==3.3.15,types-enum34==1.1.8,types-ipaddress==1.0.8,types-paramiko==2.8.13,typing_extensions==4.1.1,urllib3==1.26.8,vine==5.0.0,voluptuous==0.12.2,warlock==1.3.3,wcwidth==0.2.5,WebOb==1.8.7,websockify==0.10.0,wrapt==1.13.3,wsgi-intercept==1.9.3,yappi==1.3.3
functional-py39 run-test-pre: PYTHONHASHSEED='3873180607'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
2022-03-15 18:57:25.511 541949 INFO oslo_service.periodic_task [req-98e6714c-ecb7-404e-9a64-9819455eeba7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:25.747 541951 INFO oslo_service.periodic_task [req-f2434009-a230-4829-9636-3a731261431c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:25.761 541945 INFO oslo_service.periodic_task [req-96d228ec-c16f-4a70-8790-2b500885e969 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:25.790 541937 INFO oslo_service.periodic_task [req-9dc23cb3-747c-434e-a2ca-2c5bbbbbd4a6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:25.825 541977 INFO oslo_service.periodic_task [req-7b101170-1058-46c6-901a-7003bd3d0b4a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:25.825 541947 INFO oslo_service.periodic_task [req-804a9047-8c12-489e-bf19-c56a5d836f66 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:25.877 541961 INFO oslo_service.periodic_task [req-e501228c-fc37-4353-a6fc-ab1684e16c2b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:25.878 541999 INFO oslo_service.periodic_task [req-2d1ea5f7-3a7a-4a59-ba97-b57c331ed070 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:25.919 541969 INFO oslo_service.periodic_task [req-eedbc768-c901-473c-b079-138e7e263cc0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:25.919 541943 INFO oslo_service.periodic_task [req-12ed51bf-7e4f-4540-a477-333bd0a30b07 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:25.936 541971 INFO oslo_service.periodic_task [req-a18e5b93-98ff-4f55-8f0b-2de37467ac6a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:25.941 541995 INFO oslo_service.periodic_task [req-eda3bf66-56da-4218-b5ab-ca7d2f284d95 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:25.948 542033 INFO oslo_service.periodic_task [req-f85d342a-ed77-40e8-964c-39944e0d7042 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:25.949 541967 INFO oslo_service.periodic_task [req-0b04b91d-6088-42d6-a864-6647815a1ff0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:25.950 542001 INFO oslo_service.periodic_task [req-b544100f-86ac-47a3-9b8c-617607dbc6c5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:25.952 541993 INFO oslo_service.periodic_task [req-589e454a-d1e0-4149-a1c9-7306b2a0574a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:25.959 541997 INFO oslo_service.periodic_task [req-335d85a5-2a17-4467-ad86-7a1b3b62b4f4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:25.957 541941 INFO oslo_service.periodic_task [req-5d445054-9fd9-464a-ae33-1ed2022be79c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:25.961 542029 INFO oslo_service.periodic_task [req-b68da4c3-5301-44a4-9fcc-d6d9b2c9e903 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:25.970 541973 INFO oslo_service.periodic_task [req-2f7b65ce-851c-420e-b89d-456aec5f3567 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:25.988 542019 INFO oslo_service.periodic_task [req-ba1001fd-6d68-4175-aaa8-0fbfaea057c7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:25.985 541981 INFO oslo_service.periodic_task [req-c2aa92cb-7e6a-4c1e-aa53-632cd53fab0b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.016 541987 INFO oslo_service.periodic_task [req-393c7910-2579-4868-9fe7-01f853bae6ba - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.009 541975 INFO oslo_service.periodic_task [req-e7a000e2-db18-49f2-94b9-0d56e2b6fac5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.008 541963 INFO oslo_service.periodic_task [req-31ba8b96-cad5-45fc-a316-1d46d087e9e2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.051 541983 INFO oslo_service.periodic_task [req-a8f2b20f-4c74-4bd2-a721-2712d110043b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.053 542035 INFO oslo_service.periodic_task [req-843c40bc-f78d-4a84-8015-790655fdf15c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.054 541965 INFO oslo_service.periodic_task [req-f0dff327-87b5-4e5a-931e-76bcb533d3cf - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.060 541985 INFO oslo_service.periodic_task [req-1b044490-ae64-4f05-90dd-68ee46c5f702 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.064 541939 INFO oslo_service.periodic_task [req-d8962322-f2c8-4e44-98b0-28c19de9cf87 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.073 541953 INFO oslo_service.periodic_task [req-355cf22e-1230-463c-a96b-d17f512c9b5b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.088 542039 INFO oslo_service.periodic_task [req-f4920998-51fb-4fb5-959f-565a8a32a9e0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.092 542009 INFO oslo_service.periodic_task [req-27b43018-e437-4490-aaa2-61c15b960e8a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.093 542025 INFO oslo_service.periodic_task [req-0d8d532c-eb33-478b-a6e6-57329023960b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.104 542011 INFO oslo_service.periodic_task [req-025ffc34-e82c-4a5a-81a0-f325321f8ce5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.107 541979 INFO oslo_service.periodic_task [req-e564f02d-0c8f-406b-b573-7d1b7e0fb9cf - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.110 542021 INFO oslo_service.periodic_task [req-eeb552b0-7b92-44bc-a4bd-8dc876e20a43 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.110 542043 INFO oslo_service.periodic_task [req-e0448d7e-f6a3-48de-bf36-99e14d96427d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.153 542015 INFO oslo_service.periodic_task [req-dcb20b1e-617b-4653-848b-1178de86b459 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.165 542031 INFO oslo_service.periodic_task [req-0d97468f-ce2c-4419-8fd9-f06b49c81f1e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.176 542023 INFO oslo_service.periodic_task [req-df76e5ff-295a-4988-9ee3-bfc7c7aa1861 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.185 542007 INFO oslo_service.periodic_task [req-937387b2-92e8-4628-81fa-38f1e209fe3f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.203 541989 INFO oslo_service.periodic_task [req-2eeb760b-94c1-41f3-a345-59bd88760fce - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.211 542003 INFO oslo_service.periodic_task [req-564135c0-ede4-477c-8b44-fd4d5780e446 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.217 542005 INFO oslo_service.periodic_task [req-5eff539f-87f0-4d6a-acd8-4031546df885 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.237 542027 INFO oslo_service.periodic_task [req-659c3c64-1333-4061-a273-01ba7b89a4d2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.250 541955 INFO oslo_service.periodic_task [req-36d751b0-f787-4d94-9af9-2747d31e83bd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.251 542017 INFO oslo_service.periodic_task [req-dc2d16c0-8f76-4dcb-aae8-9ce8a19289d6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.266 541991 INFO oslo_service.periodic_task [req-2d7901c4-fc3a-4495-b7e1-3b26b3a516af - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.275 541957 INFO oslo_service.periodic_task [req-690fad0e-e939-4fab-b857-5d2a859d3905 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.277 542013 INFO oslo_service.periodic_task [req-9d14943c-32fe-4791-a7e4-2c70d12b676d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.288 542037 INFO oslo_service.periodic_task [req-1342face-9f2b-4eee-97d5-d21ce7a456bf - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.363 541959 INFO oslo_service.periodic_task [req-b364b5c1-3d5a-482b-afad-3e6e36ad5632 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.410 542041 INFO oslo_service.periodic_task [req-f9170ff1-1185-45b7-8459-659684b27c40 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.506 542048 INFO oslo_service.periodic_task [req-11aa76bd-d32a-4594-9be0-980b0ff7497c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:26.629 542046 INFO oslo_service.periodic_task [req-5b5a3ccf-a8f6-46f5-9e48-a535691ce808 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
{3} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.657208s] ... ok
{2} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [1.675649s] ... ok
{6} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.352450s] ... ok
{7} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.369498s] ... ok
{12} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.394070s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.453918s] ... ok
{8} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.418988s] ... ok
{10} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.470785s] ... ok
{9} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.510676s] ... ok
{11} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.480580s] ... ok
{32} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{21} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [3.183102s] ... ok
{4} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [3.731748s] ... ok
{31} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.886536s] ... ok
{26} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.602930s] ... ok
{29} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.877134s] ... ok
{13} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [3.843743s] ... ok
{27} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.787626s] ... ok
{16} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [4.414721s] ... ok
{34} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [4.177950s] ... ok
{26} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.590207s] ... ok
{39} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.268595s] ... ok
{17} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [4.672865s] ... ok
{46} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [4.666608s] ... ok
{15} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [5.054198s] ... ok
{48} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.071392s] ... ok
{53} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [4.924471s] ... ok
{30} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [5.095766s] ... ok
{47} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [4.910851s] ... ok
{52} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [4.941654s] ... ok
{35} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.178490s] ... ok
{45} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.248025s] ... ok
{55} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [4.977173s] ... ok
{43} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [5.360726s] ... ok
{38} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.445582s] ... ok
{41} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [5.903228s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "instances" and FROM element "security_groups". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{28} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [6.033626s] ... ok
{25} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [6.133500s] ... ok
{37} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [6.082808s] ... ok
{36} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [6.205488s] ... ok
{20} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.491218s] ... ok
{40} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [6.109659s] ... ok
{24} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [6.358704s] ... ok
{42} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [6.476491s] ... ok
{19} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [6.604636s] ... ok
{51} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [6.639926s] ... ok
{22} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [6.774849s] ... ok
{23} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [6.924352s] ... ok
{54} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [6.392303s] ... ok
{6} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [5.381690s] ... ok
{14} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [7.217050s] ... ok
{29} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [3.472794s] ... ok
{49} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [7.259191s] ... ok
{50} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [7.025601s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/hub.py", line 476, in fire_timers
timer()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/timer.py", line 59, in __call__
cb(*args, **kw)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/greenthread.py", line 221, in main
result = function(*args, **kwargs)
File "/home/ubuntu/nova/nova/utils.py", line 655, in context_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/tests/fixtures/nova.py", line 1661, in test_case_id_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9744, in _live_migration_operation
LOG.error("Live Migration failure: %s", e, instance=instance)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9700, in _live_migration_operation
new_xml_str = libvirt_migrate.get_updated_guest_xml(
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 66, in get_updated_guest_xml
xml_doc = _update_vif_xml(xml_doc, migrate_data, get_vif_config)
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 396, in _update_vif_xml
interface_dev.insert(index + 1, address)
TypeError: Argument 'element' has incorrect type (expected lxml.etree._Element, got NoneType)
{44} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [7.328694s] ... ok
{34} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [3.082809s] ... ok
{7} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [5.593292s] ... ok
{27} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [3.703889s] ... ok
{33} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [7.577161s] ... ok
{47} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [2.702546s] ... ok
{12} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [5.571120s] ... ok
{39} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [3.482103s] ... ok
{5} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [5.743302s] ... ok
{45} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [2.600237s] ... ok
{46} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [3.535790s] ... ok
{11} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [5.375071s] ... ok
{21} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [5.043831s] ... ok
{18} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [8.367914s] ... ok
{31} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [4.580669s] ... ok
{43} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [3.072440s] ... ok
{1} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [8.659159s] ... ok
{3} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [7.187793s] ... ok
{9} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [6.095793s] ... ok
{26} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.499211s] ... ok
{32} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [5.659792s] ... ok
{48} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [4.097464s] ... ok
{35} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [4.049716s] ... ok
{2} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [7.833985s] ... ok
{20} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [3.244216s] ... ok
{19} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [2.955835s] ... ok
{28} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [3.592115s] ... ok
{0} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.807831s] ... ok
{1} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [0.933537s] ... ok
{25} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.551470s] ... ok
{38} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [3.997172s] ... ok
{55} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [4.242158s] ... ok
{31} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.463231s] ... ok
{53} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.812722s] ... ok
{14} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [2.680110s] ... ok
{24} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.544695s] ... ok
{22} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [3.234285s] ... ok
{42} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [3.439679s] ... ok
{35} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [0.637481s] ... ok
{10} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [7.436939s] ... ok
{23} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [3.227071s] ... ok
{8} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.782932s] ... ok
{52} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [5.194879s] ... ok
{13} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [6.808281s] ... ok
{40} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [4.647600s] ... ok
{41} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [5.135143s] ... ok
{4} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.536706s] ... ok
{30} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [6.034745s] ... ok
{51} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [4.465689s] ... ok
{18} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [2.977681s] ... ok
{44} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [3.979635s] ... ok
{50} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [4.125438s] ... ok
{54} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [4.502436s] ... ok
{33} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [3.884382s] ... ok
{37} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [5.670240s] ... ok
{16} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [7.524329s] ... ok
{17} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [7.286443s] ... ok
{41} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.939219s] ... ok
{36} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [5.804577s] ... ok
{15} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [7.200799s] ... ok
{49} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [5.007360s] ... ok
{32} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [3.780545s] ... ok
======
Totals
======
Ran: 116 tests in 13.1859 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 548.9993 sec.
==============
Worker Balance
==============
- Worker 0 (1 tests) => 0:00:09.807831
- Worker 1 (2 tests) => 0:00:09.593527
- Worker 2 (2 tests) => 0:00:09.512174
- Worker 3 (2 tests) => 0:00:08.847531
- Worker 4 (2 tests) => 0:00:11.270585
- Worker 5 (2 tests) => 0:00:08.199505
- Worker 6 (2 tests) => 0:00:07.736873
- Worker 7 (2 tests) => 0:00:07.965467
- Worker 8 (2 tests) => 0:00:10.204872
- Worker 9 (2 tests) => 0:00:08.609116
- Worker 10 (2 tests) => 0:00:09.910463
- Worker 11 (2 tests) => 0:00:07.858483
- Worker 12 (2 tests) => 0:00:07.966463
- Worker 13 (2 tests) => 0:00:10.653496
- Worker 14 (2 tests) => 0:00:09.898657
- Worker 15 (2 tests) => 0:00:12.256223
- Worker 16 (2 tests) => 0:00:11.940114
- Worker 17 (2 tests) => 0:00:11.960757
- Worker 18 (2 tests) => 0:00:11.347429
- Worker 19 (2 tests) => 0:00:09.561698
- Worker 20 (2 tests) => 0:00:09.737345
- Worker 21 (2 tests) => 0:00:08.227720
- Worker 22 (2 tests) => 0:00:10.010929
- Worker 23 (2 tests) => 0:00:10.152261
- Worker 24 (2 tests) => 0:00:09.905353
- Worker 25 (2 tests) => 0:00:09.686285
- Worker 26 (3 tests) => 0:00:08.694617
- Worker 27 (2 tests) => 0:00:07.493267
- Worker 28 (2 tests) => 0:00:09.627471
- Worker 29 (2 tests) => 0:00:07.350989
- Worker 30 (2 tests) => 0:00:11.131247
- Worker 31 (3 tests) => 0:00:09.933507
- Worker 32 (3 tests) => 0:00:12.726328
- Worker 33 (2 tests) => 0:00:11.463362
- Worker 34 (2 tests) => 0:00:07.261640
- Worker 35 (3 tests) => 0:00:09.868223
- Worker 36 (2 tests) => 0:00:12.012143
- Worker 37 (2 tests) => 0:00:11.754514
- Worker 38 (2 tests) => 0:00:09.444781
- Worker 39 (2 tests) => 0:00:07.751887
- Worker 40 (2 tests) => 0:00:10.758913
- Worker 41 (3 tests) => 0:00:11.980023
- Worker 42 (2 tests) => 0:00:09.917604
- Worker 43 (2 tests) => 0:00:08.434928
- Worker 44 (2 tests) => 0:00:11.310655
- Worker 45 (2 tests) => 0:00:07.851061
- Worker 46 (2 tests) => 0:00:08.203443
- Worker 47 (2 tests) => 0:00:07.615612
- Worker 48 (2 tests) => 0:00:09.170832
- Worker 49 (2 tests) => 0:00:12.267972
- Worker 50 (2 tests) => 0:00:11.153122
- Worker 51 (2 tests) => 0:00:11.107716
- Worker 52 (2 tests) => 0:00:10.138539
- Worker 53 (2 tests) => 0:00:09.738894
- Worker 54 (2 tests) => 0:00:10.895921
- Worker 55 (2 tests) => 0:00:09.221177
functional-py39 run-test: commands[1] | stestr slowest
Test id Runtime (s)
------------------------------------------------------------------------------------------------------------------------------------------ -----------
nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid 9.808
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 8.659
nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate 8.368
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False 7.834
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.783
nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 7.577
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False 7.537
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True 7.524
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True 7.437
nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists 7.329
__________________________________________________________________________________ summary __________________________________________________________________________________
functional-py39: commands succeeded
congratulations :)
Tox run 8
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/easy_install.py:160: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
functional-py39 develop-inst-noop: /home/ubuntu/nova
functional-py39 installed: alembic==1.7.6,amqp==5.0.9,appdirs==1.4.4,attrs==21.4.0,automaton==2.5.0,autopage==0.5.0,bandit==1.7.4,bcrypt==3.2.0,cachetools==5.0.0,castellan==3.10.1,certifi==2021.10.8,cffi==1.15.0,charset-normalizer==2.0.12,cliff==3.10.1,cmd2==2.4.0,colorama==0.4.4,coverage==6.3.2,cryptography==36.0.1,cursive==0.2.2,ddt==1.4.4,debtcollector==2.4.0,decorator==5.1.1,dnspython==2.1.0,dogpile.cache==1.1.5,eventlet==0.33.0,extras==1.0.0,fasteners==0.17.3,fixtures==3.0.0,flake8==3.8.4,future==0.18.2,futurist==2.4.0,gabbi==2.4.0,gitdb==4.0.9,GitPython==3.1.27,greenlet==1.1.2,hacking==3.1.0,idna==3.3,iniconfig==1.1.1,iso8601==1.0.2,Jinja2==3.0.3,jmespath==0.10.0,jsonpatch==1.32,jsonpath-rw==1.4.0,jsonpath-rw-ext==1.2.2,jsonpointer==2.2,jsonschema==3.2.0,keystoneauth1==4.5.0,keystonemiddleware==9.4.0,kombu==5.2.4,lxml==4.8.0,Mako==1.1.6,MarkupSafe==2.1.1,mccabe==0.6.1,microversion-parse==1.0.1,mock==4.0.3,msgpack==1.0.3,munch==2.5.0,mypy==0.931,mypy-extensions==0.4.3,netaddr==0.8.0,netifaces==0.11.0,networkx==2.7.1,-e git+https://review.opendev.org/openstack/nova@d43538712c034023bdb3e25cd7adfdee409ed596#egg=nova,numpy==1.22.3,openstack-placement==6.0.0,openstacksdk==0.61.0,os-brick==5.2.0,os-client-config==2.1.0,os-resource-classes==1.1.0,os-service-types==1.7.0,os-traits==2.7.0,os-vif==2.7.1,os-win==5.6.0,osc-lib==2.5.0,oslo.cache==2.10.1,oslo.concurrency==4.5.0,oslo.config==8.8.0,oslo.context==4.1.0,oslo.db==11.2.0,oslo.i18n==5.1.0,oslo.log==4.7.0,oslo.messaging==12.13.0,oslo.metrics==0.4.0,oslo.middleware==4.5.1,oslo.policy==3.11.0,oslo.privsep==2.7.0,oslo.reports==2.3.0,oslo.rootwrap==6.3.1,oslo.serialization==4.3.0,oslo.service==2.8.0,oslo.upgradecheck==1.5.0,oslo.utils==4.12.2,oslo.versionedobjects==2.6.0,oslotest==4.5.0,osprofiler==3.4.2,ovs==2.16.0,ovsdbapp==1.15.1,packaging==21.3,paramiko==2.8.1,Paste==3.5.0,PasteDeploy==2.1.1,pbr==5.8.1,pluggy==1.0.0,ply==3.11,prettytable==3.2.0,prometheus-client==0.13.1,psutil==5.9.0,psycopg2-binary==2.9.3,py==1.11.0,pycadf==3.1.1,pycodestyle==2.6.0,pycparser==2.21,pydot==1.4.2,pyflakes==2.2.0,pyinotify==0.9.6,PyMySQL==1.0.2,PyNaCl==1.5.0,pyOpenSSL==22.0.0,pyparsing==3.0.7,pyperclip==1.8.2,pyroute2==0.6.6,pyroute2.core==0.6.6,pyroute2.ethtool==0.6.6,pyroute2.ipdb==0.6.6,pyroute2.ipset==0.6.6,pyroute2.ndb==0.6.6,pyroute2.nftables==0.6.6,pyroute2.nslink==0.6.6,pyrsistent==0.18.1,pytest==7.0.1,python-barbicanclient==5.3.0,python-cinderclient==8.3.0,python-dateutil==2.8.2,python-glanceclient==3.6.0,python-ironicclient==4.11.0,python-keystoneclient==4.4.0,python-neutronclient==7.8.0,python-subunit==1.4.0,pytz==2021.3,PyYAML==6.0,repoze.lru==0.7,requests==2.27.1,requests-mock==1.9.3,requestsexceptions==1.4.0,retrying==1.3.3,rfc3986==1.5.0,Routes==2.5.1,simplejson==3.17.6,six==1.16.0,smmap==5.0.0,sortedcontainers==2.4.0,SQLAlchemy==1.4.31,sqlalchemy-migrate==0.13.0,sqlparse==0.4.2,statsd==3.3.0,stestr==3.2.1,stevedore==3.5.0,taskflow==4.6.4,Tempita==0.5.2,tenacity==6.3.1,testresources==2.0.1,testscenarios==0.5.0,testtools==2.5.0,tomli==2.0.1,tooz==2.10.1,types-cryptography==3.3.15,types-enum34==1.1.8,types-ipaddress==1.0.8,types-paramiko==2.8.13,typing_extensions==4.1.1,urllib3==1.26.8,vine==5.0.0,voluptuous==0.12.2,warlock==1.3.3,wcwidth==0.2.5,WebOb==1.8.7,websockify==0.10.0,wrapt==1.13.3,wsgi-intercept==1.9.3,yappi==1.3.3
functional-py39 run-test-pre: PYTHONHASHSEED='2408415127'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
2022-03-15 18:57:57.294 542621 INFO oslo_service.periodic_task [req-9fc973ab-a9d8-4849-b6dd-ac281587f59d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.497 542617 INFO oslo_service.periodic_task [req-4c3ca12c-d088-4b57-b2ee-86f3f666d15e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.556 542615 INFO oslo_service.periodic_task [req-02aabc29-f192-4127-b683-fd3aa250e1c0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.725 542619 INFO oslo_service.periodic_task [req-6772411e-9a0c-4249-ad45-eaa85debfd34 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.739 542639 INFO oslo_service.periodic_task [req-bcf977eb-8e13-47e7-9f8d-7894ae6de1bf - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.739 542661 INFO oslo_service.periodic_task [req-9c16083e-be27-4b1d-9c62-d31e52dc8314 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.743 542623 INFO oslo_service.periodic_task [req-98629a32-8364-47d3-9866-b9598eee4569 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.742 542677 INFO oslo_service.periodic_task [req-1344ce0b-e4db-46ee-a1b5-5190bd8811f9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.751 542631 INFO oslo_service.periodic_task [req-d13c76c0-f3fb-4bb9-8d3f-8415a171844d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.764 542627 INFO oslo_service.periodic_task [req-fa5b2ad3-99ac-46ab-8b82-26e1f40dc5f2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.768 542633 INFO oslo_service.periodic_task [req-967b681b-dbc6-457e-9eff-8a02fe01d72b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.765 542693 INFO oslo_service.periodic_task [req-78d8152e-78ab-403a-ace5-a40b6dad29f6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.787 542645 INFO oslo_service.periodic_task [req-fa448732-b330-4b3c-b15e-27282a15455d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.791 542667 INFO oslo_service.periodic_task [req-cae5912d-0845-4e2e-b4ad-9103331e345d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.781 542629 INFO oslo_service.periodic_task [req-03900c66-97b2-4c03-b440-5840871155a9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.800 542659 INFO oslo_service.periodic_task [req-0a603ab1-798e-4002-8325-afc70e7a7e3a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.818 542653 INFO oslo_service.periodic_task [req-04249c6d-a08c-4969-8a14-12169e99280f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.860 542637 INFO oslo_service.periodic_task [req-a5434aa4-7efd-4d5d-bfbb-36e67ee70d11 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.871 542671 INFO oslo_service.periodic_task [req-e406fd8f-dcb9-42c3-957d-b91677c63b8a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.874 542673 INFO oslo_service.periodic_task [req-76d66678-691a-47f6-97ef-704200133b80 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.872 542643 INFO oslo_service.periodic_task [req-dd95438e-e6ff-4fe9-8a0f-4a3cae38bbcd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.882 542697 INFO oslo_service.periodic_task [req-494916f0-e46d-42e5-9436-cf5ba6c13ffe - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.885 542723 INFO oslo_service.periodic_task [req-644add3c-a4a4-4bf2-8c31-22a729937dcc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.915 542689 INFO oslo_service.periodic_task [req-c8f5d0d1-1004-4dc8-a6b8-8d17cfdb5ac5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.926 542687 INFO oslo_service.periodic_task [req-71215acf-7eaf-4ebf-abf4-95d7c7604b6c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.936 542679 INFO oslo_service.periodic_task [req-26f7cd77-828d-484e-9ac2-79f2941b3a6f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.938 542651 INFO oslo_service.periodic_task [req-413ee4e7-0cdc-406b-a50b-cf1b923acc0d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.940 542641 INFO oslo_service.periodic_task [req-f72b81cc-3ef0-44b7-b5f1-60e6bef7fa37 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.961 542683 INFO oslo_service.periodic_task [req-8ee158e8-929f-41c2-951b-4b5b578857b9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.965 542669 INFO oslo_service.periodic_task [req-10b87d13-0348-4f94-a133-7af2c8539df2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.971 542647 INFO oslo_service.periodic_task [req-c3531c72-4c29-4e6a-a45d-40d418412f95 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.972 542635 INFO oslo_service.periodic_task [req-693b5867-1d1e-47f3-b500-8caddaa86ac7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.971 542707 INFO oslo_service.periodic_task [req-0b37cecf-2790-4c1e-94d8-1d18c380e022 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.977 542709 INFO oslo_service.periodic_task [req-945714fb-6a77-426c-85fe-f5e19d324845 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:57.998 542705 INFO oslo_service.periodic_task [req-7113306f-bd6c-451d-a112-15d3de34753d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:58.008 542721 INFO oslo_service.periodic_task [req-32819e27-2e24-4f3b-a42f-23bf943969c7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:58.038 542711 INFO oslo_service.periodic_task [req-4e7eb6c2-dcf9-4d74-8aa3-6d352f96acfb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:58.053 542675 INFO oslo_service.periodic_task [req-48564774-fc42-4dd3-acd2-a80c42f51cda - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:58.059 542663 INFO oslo_service.periodic_task [req-567f78e6-d93c-439b-87af-c80dde45dad3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:58.067 542649 INFO oslo_service.periodic_task [req-c54810a8-6d85-4b09-bfdb-8dfe3c016178 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:58.100 542657 INFO oslo_service.periodic_task [req-159e2b67-0efa-409b-a6a3-5d9a93ee5e8e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:58.107 542717 INFO oslo_service.periodic_task [req-1a113ddf-3367-413a-9774-8e267f711b7a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:58.108 542685 INFO oslo_service.periodic_task [req-db646873-babf-462f-8786-01dbfb081952 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:58.116 542625 INFO oslo_service.periodic_task [req-f5f564df-0e68-48ed-96f6-78c6c6285f82 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:58.131 542713 INFO oslo_service.periodic_task [req-8d72294c-df9b-4786-b8df-8d8a658c649c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:58.147 542703 INFO oslo_service.periodic_task [req-727c58d6-aeb6-4662-a515-1989ecbed1f2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:58.154 542695 INFO oslo_service.periodic_task [req-1cd7d6ba-e9e7-4c87-bd4f-f74e07778872 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:58.156 542655 INFO oslo_service.periodic_task [req-feb7f367-84bf-4e65-84d2-6e7efddd92fd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:58.167 542715 INFO oslo_service.periodic_task [req-a4e7d616-7c46-4234-bd9b-96bd7f640c79 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:58.184 542699 INFO oslo_service.periodic_task [req-a92882f3-0dfc-4121-931e-75cfa1d2d712 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:58.195 542726 INFO oslo_service.periodic_task [req-8d32ec9d-ee8c-48ba-a17f-99ebdd6f45d2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:58.220 542691 INFO oslo_service.periodic_task [req-3a8a2e25-2244-4433-9f3a-0d5ce3967103 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:58.240 542701 INFO oslo_service.periodic_task [req-3ea004d3-8771-4033-82d1-3567ffd07996 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:58.257 542719 INFO oslo_service.periodic_task [req-1d3cffe5-93ef-40a7-a1d4-b0c0c348d8a6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:58.307 542681 INFO oslo_service.periodic_task [req-16e5ff47-dc16-4ce5-bc8c-16e35448a2da - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:57:58.340 542665 INFO oslo_service.periodic_task [req-38a67d8d-542b-403b-92e9-478ab5faaec7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
{1} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.637089s] ... ok
{2} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [1.617201s] ... ok
{3} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.361960s] ... ok
{4} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.382343s] ... ok
{9} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.369579s] ... ok
{6} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.387008s] ... ok
{8} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.478100s] ... ok
{7} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.474317s] ... ok
{10} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.521883s] ... ok
{5} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.423902s] ... ok
{22} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{40} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [2.993365s] ... ok
{30} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.532210s] ... ok
{34} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.715396s] ... ok
{36} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.834537s] ... ok
{46} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.086279s] ... ok
{35} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [3.992163s] ... ok
{44} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [4.105379s] ... ok
{13} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [4.454508s] ... ok
{47} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [4.432949s] ... ok
{54} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [4.893100s] ... ok
{26} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.182712s] ... ok
{39} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.258399s] ... ok
{53} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.064579s] ... ok
{55} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [4.985553s] ... ok
{42} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [5.054288s] ... ok
{52} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [5.007845s] ... ok
{48} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.268734s] ... ok
{45} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.340804s] ... ok
{43} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.272267s] ... ok
{44} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.368999s] ... ok
{31} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [5.911265s] ... ok
{29} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [5.823501s] ... ok
{32} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [5.758820s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "instances" and FROM element "security_groups". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{25} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.422715s] ... ok
{24} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.699157s] ... ok
{17} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.768209s] ... ok
{45} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.709330s] ... ok
{23} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [6.396359s] ... ok
{19} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [6.338949s] ... ok
{20} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [6.035911s] ... ok
{27} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [6.250763s] ... ok
{21} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.142738s] ... ok
{49} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [6.240259s] ... ok
{51} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [6.394503s] ... ok
{18} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [6.600983s] ... ok
{11} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [6.772959s] ... ok
{12} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [7.070621s] ... ok
{15} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [7.047228s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/hub.py", line 476, in fire_timers
timer()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/timer.py", line 59, in __call__
cb(*args, **kw)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/greenthread.py", line 221, in main
result = function(*args, **kwargs)
File "/home/ubuntu/nova/nova/utils.py", line 655, in context_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/tests/fixtures/nova.py", line 1661, in test_case_id_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9744, in _live_migration_operation
LOG.error("Live Migration failure: %s", e, instance=instance)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9700, in _live_migration_operation
new_xml_str = libvirt_migrate.get_updated_guest_xml(
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 66, in get_updated_guest_xml
xml_doc = _update_vif_xml(xml_doc, migrate_data, get_vif_config)
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 396, in _update_vif_xml
interface_dev.insert(index + 1, address)
TypeError: Argument 'element' has incorrect type (expected lxml.etree._Element, got NoneType)
{50} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [6.893567s] ... ok
{41} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [7.187462s] ... ok
{16} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [7.161462s] ... ok
{38} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [7.276621s] ... ok
{18} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [1.106645s] ... ok
{54} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [2.930991s] ... ok
{9} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [5.581619s] ... ok
{32} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [2.048324s] ... ok
{47} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.353663s] ... ok
{28} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [7.944661s] ... ok
{33} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [7.728368s] ... ok
{5} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [5.523142s] ... ok
{53} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [2.980901s] ... ok
{37} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [8.212743s] ... ok
{42} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [2.975059s] ... ok
{14} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [8.399335s] ... ok
{22} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [5.252171s] ... ok
{40} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [5.406528s] ... ok
{29} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [3.016091s] ... ok
{2} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [7.399437s] ... ok
{0} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.332500s] ... ok
{34} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [5.523435s] ... ok
{39} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [4.231101s] ... ok
{10} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.750474s] ... ok
{12} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [2.514862s] ... ok
{21} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [3.078139s] ... ok
{8} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [7.110447s] ... ok
{38} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [1.846947s] ... ok
{11} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [2.750176s] ... ok
{1} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [8.247681s] ... ok
{26} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [4.426006s] ... ok
{30} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.858028s] ... ok
{36} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [5.761281s] ... ok
{45} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [3.484183s] ... ok
{27} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.368953s] ... ok
{3} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [7.964449s] ... ok
{25} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [3.864566s] ... ok
{49} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.315370s] ... ok
{20} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [3.499453s] ... ok
{31} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [4.074942s] ... ok
{4} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.645657s] ... ok
{35} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [5.703009s] ... ok
{44} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [4.248313s] ... ok
{55} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.731929s] ... ok
{46} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [5.888292s] ... ok
{15} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [3.187691s] ... ok
{7} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [7.771902s] ... ok
{6} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.910220s] ... ok
{48} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [4.802261s] ... ok
{16} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [3.174025s] ... ok
{24} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [4.621163s] ... ok
{52} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [5.258253s] ... ok
{43} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [5.031352s] ... ok
{46} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [0.805551s] ... ok
{14} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [2.579077s] ... ok
{23} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [4.810595s] ... ok
{19} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [5.033619s] ... ok
{13} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [6.803823s] ... ok
{43} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.734405s] ... ok
{41} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [4.274403s] ... ok
{28} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.682950s] ... ok
{37} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [3.803931s] ... ok
{51} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [5.420606s] ... ok
{50} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [4.968913s] ... ok
{33} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.142335s] ... ok
{40} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [3.960153s] ... ok
{17} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [6.715425s] ... ok
======
Totals
======
Ran: 116 tests in 13.2589 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 553.2535 sec.
==============
Worker Balance
==============
- Worker 0 (1 tests) => 0:00:09.332500
- Worker 1 (2 tests) => 0:00:09.886985
- Worker 2 (2 tests) => 0:00:09.019134
- Worker 3 (2 tests) => 0:00:10.329271
- Worker 4 (2 tests) => 0:00:10.030797
- Worker 5 (2 tests) => 0:00:07.949080
- Worker 6 (2 tests) => 0:00:10.299869
- Worker 7 (2 tests) => 0:00:10.249141
- Worker 8 (2 tests) => 0:00:09.591379
- Worker 9 (2 tests) => 0:00:07.953371
- Worker 10 (2 tests) => 0:00:09.275485
- Worker 11 (2 tests) => 0:00:09.524409
- Worker 12 (2 tests) => 0:00:09.587077
- Worker 13 (2 tests) => 0:00:11.259363
- Worker 14 (2 tests) => 0:00:10.979922
- Worker 15 (2 tests) => 0:00:10.237998
- Worker 16 (2 tests) => 0:00:10.337275
- Worker 17 (2 tests) => 0:00:12.485995
- Worker 18 (2 tests) => 0:00:07.708756
- Worker 19 (2 tests) => 0:00:11.374043
- Worker 20 (2 tests) => 0:00:09.536718
- Worker 21 (2 tests) => 0:00:09.222069
- Worker 22 (2 tests) => 0:00:08.537687
- Worker 23 (2 tests) => 0:00:11.207963
- Worker 24 (2 tests) => 0:00:10.321731
- Worker 25 (2 tests) => 0:00:09.288174
- Worker 26 (2 tests) => 0:00:09.610624
- Worker 27 (2 tests) => 0:00:09.621778
- Worker 28 (2 tests) => 0:00:11.630108
- Worker 29 (2 tests) => 0:00:08.841053
- Worker 30 (2 tests) => 0:00:09.391909
- Worker 31 (2 tests) => 0:00:09.987937
- Worker 32 (2 tests) => 0:00:07.807922
- Worker 33 (2 tests) => 0:00:11.871902
- Worker 34 (2 tests) => 0:00:09.240318
- Worker 35 (2 tests) => 0:00:09.696109
- Worker 36 (2 tests) => 0:00:09.597710
- Worker 37 (2 tests) => 0:00:12.017785
- Worker 38 (2 tests) => 0:00:09.124297
- Worker 39 (2 tests) => 0:00:09.491695
- Worker 40 (3 tests) => 0:00:12.363169
- Worker 41 (2 tests) => 0:00:11.463041
- Worker 42 (2 tests) => 0:00:08.030489
- Worker 43 (3 tests) => 0:00:11.040841
- Worker 44 (3 tests) => 0:00:09.725531
- Worker 45 (3 tests) => 0:00:09.537324
- Worker 46 (3 tests) => 0:00:10.782327
- Worker 47 (2 tests) => 0:00:07.787946
- Worker 48 (2 tests) => 0:00:10.073496
- Worker 49 (2 tests) => 0:00:09.556713
- Worker 50 (2 tests) => 0:00:11.864178
- Worker 51 (2 tests) => 0:00:11.816644
- Worker 52 (2 tests) => 0:00:10.267981
- Worker 53 (2 tests) => 0:00:08.046703
- Worker 54 (2 tests) => 0:00:07.824940
- Worker 55 (2 tests) => 0:00:09.719994
functional-py39 run-test: commands[1] | stestr slowest
Test id Runtime (s)
--------------------------------------------------------------------------------------------------------------------------------------------------------------------- -----------
nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid 9.332
nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate 8.399
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 8.248
nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules 8.213
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False 7.964
nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change 7.945
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False 7.910
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True 7.772
nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure 7.728
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.646
__________________________________________________________________________________ summary __________________________________________________________________________________
functional-py39: commands succeeded
congratulations :)
Tox run 9
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/easy_install.py:160: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
functional-py39 develop-inst-noop: /home/ubuntu/nova
functional-py39 installed: alembic==1.7.6,amqp==5.0.9,appdirs==1.4.4,attrs==21.4.0,automaton==2.5.0,autopage==0.5.0,bandit==1.7.4,bcrypt==3.2.0,cachetools==5.0.0,castellan==3.10.1,certifi==2021.10.8,cffi==1.15.0,charset-normalizer==2.0.12,cliff==3.10.1,cmd2==2.4.0,colorama==0.4.4,coverage==6.3.2,cryptography==36.0.1,cursive==0.2.2,ddt==1.4.4,debtcollector==2.4.0,decorator==5.1.1,dnspython==2.1.0,dogpile.cache==1.1.5,eventlet==0.33.0,extras==1.0.0,fasteners==0.17.3,fixtures==3.0.0,flake8==3.8.4,future==0.18.2,futurist==2.4.0,gabbi==2.4.0,gitdb==4.0.9,GitPython==3.1.27,greenlet==1.1.2,hacking==3.1.0,idna==3.3,iniconfig==1.1.1,iso8601==1.0.2,Jinja2==3.0.3,jmespath==0.10.0,jsonpatch==1.32,jsonpath-rw==1.4.0,jsonpath-rw-ext==1.2.2,jsonpointer==2.2,jsonschema==3.2.0,keystoneauth1==4.5.0,keystonemiddleware==9.4.0,kombu==5.2.4,lxml==4.8.0,Mako==1.1.6,MarkupSafe==2.1.1,mccabe==0.6.1,microversion-parse==1.0.1,mock==4.0.3,msgpack==1.0.3,munch==2.5.0,mypy==0.931,mypy-extensions==0.4.3,netaddr==0.8.0,netifaces==0.11.0,networkx==2.7.1,-e git+https://review.opendev.org/openstack/nova@d43538712c034023bdb3e25cd7adfdee409ed596#egg=nova,numpy==1.22.3,openstack-placement==6.0.0,openstacksdk==0.61.0,os-brick==5.2.0,os-client-config==2.1.0,os-resource-classes==1.1.0,os-service-types==1.7.0,os-traits==2.7.0,os-vif==2.7.1,os-win==5.6.0,osc-lib==2.5.0,oslo.cache==2.10.1,oslo.concurrency==4.5.0,oslo.config==8.8.0,oslo.context==4.1.0,oslo.db==11.2.0,oslo.i18n==5.1.0,oslo.log==4.7.0,oslo.messaging==12.13.0,oslo.metrics==0.4.0,oslo.middleware==4.5.1,oslo.policy==3.11.0,oslo.privsep==2.7.0,oslo.reports==2.3.0,oslo.rootwrap==6.3.1,oslo.serialization==4.3.0,oslo.service==2.8.0,oslo.upgradecheck==1.5.0,oslo.utils==4.12.2,oslo.versionedobjects==2.6.0,oslotest==4.5.0,osprofiler==3.4.2,ovs==2.16.0,ovsdbapp==1.15.1,packaging==21.3,paramiko==2.8.1,Paste==3.5.0,PasteDeploy==2.1.1,pbr==5.8.1,pluggy==1.0.0,ply==3.11,prettytable==3.2.0,prometheus-client==0.13.1,psutil==5.9.0,psycopg2-binary==2.9.3,py==1.11.0,pycadf==3.1.1,pycodestyle==2.6.0,pycparser==2.21,pydot==1.4.2,pyflakes==2.2.0,pyinotify==0.9.6,PyMySQL==1.0.2,PyNaCl==1.5.0,pyOpenSSL==22.0.0,pyparsing==3.0.7,pyperclip==1.8.2,pyroute2==0.6.6,pyroute2.core==0.6.6,pyroute2.ethtool==0.6.6,pyroute2.ipdb==0.6.6,pyroute2.ipset==0.6.6,pyroute2.ndb==0.6.6,pyroute2.nftables==0.6.6,pyroute2.nslink==0.6.6,pyrsistent==0.18.1,pytest==7.0.1,python-barbicanclient==5.3.0,python-cinderclient==8.3.0,python-dateutil==2.8.2,python-glanceclient==3.6.0,python-ironicclient==4.11.0,python-keystoneclient==4.4.0,python-neutronclient==7.8.0,python-subunit==1.4.0,pytz==2021.3,PyYAML==6.0,repoze.lru==0.7,requests==2.27.1,requests-mock==1.9.3,requestsexceptions==1.4.0,retrying==1.3.3,rfc3986==1.5.0,Routes==2.5.1,simplejson==3.17.6,six==1.16.0,smmap==5.0.0,sortedcontainers==2.4.0,SQLAlchemy==1.4.31,sqlalchemy-migrate==0.13.0,sqlparse==0.4.2,statsd==3.3.0,stestr==3.2.1,stevedore==3.5.0,taskflow==4.6.4,Tempita==0.5.2,tenacity==6.3.1,testresources==2.0.1,testscenarios==0.5.0,testtools==2.5.0,tomli==2.0.1,tooz==2.10.1,types-cryptography==3.3.15,types-enum34==1.1.8,types-ipaddress==1.0.8,types-paramiko==2.8.13,typing_extensions==4.1.1,urllib3==1.26.8,vine==5.0.0,voluptuous==0.12.2,warlock==1.3.3,wcwidth==0.2.5,WebOb==1.8.7,websockify==0.10.0,wrapt==1.13.3,wsgi-intercept==1.9.3,yappi==1.3.3
functional-py39 run-test-pre: PYTHONHASHSEED='615747634'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
2022-03-15 18:58:29.929 543346 INFO oslo_service.periodic_task [req-19c905a5-f1cf-4bed-892e-360dccb4f47e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.093 543322 INFO oslo_service.periodic_task [req-647ccf83-1aa2-4b5d-8f7c-9b3451a02372 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.148 543314 INFO oslo_service.periodic_task [req-9c6149ce-a47c-4c3e-bf95-4539046e48f3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.154 543336 INFO oslo_service.periodic_task [req-24c9bdc2-b6a5-4db0-9ee2-2a239b26793b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.158 543332 INFO oslo_service.periodic_task [req-de16a7c5-31b9-4239-a2cb-50b04ccc78d2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.169 543334 INFO oslo_service.periodic_task [req-1e3ac262-67f9-4227-8769-449db6395e67 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.174 543324 INFO oslo_service.periodic_task [req-a0c0a012-e53b-45f9-8588-a0f0e059d06e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.177 543316 INFO oslo_service.periodic_task [req-4bfbba7e-2eb9-4df0-8537-262cc0edf78f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.236 543352 INFO oslo_service.periodic_task [req-613ef93e-38f7-4c73-ad08-83577559f1f2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.247 543364 INFO oslo_service.periodic_task [req-ccaf5cd0-707d-441f-b641-9c5e8286d560 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.254 543360 INFO oslo_service.periodic_task [req-fe6b63d0-5e45-4900-ba86-70d481115c44 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.264 543388 INFO oslo_service.periodic_task [req-52bcbc4d-bb9d-4bbe-95d5-daf2cffda2e0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.292 543330 INFO oslo_service.periodic_task [req-46b150b2-9e99-4d41-9b46-c4158e5bd497 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.314 543422 INFO oslo_service.periodic_task [req-19c83664-2c9f-4126-a1fd-f0296eae35ab - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.324 543374 INFO oslo_service.periodic_task [req-9ea9875b-58be-4aa7-9afa-6a084f496c20 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.335 543362 INFO oslo_service.periodic_task [req-5d323b92-67d8-4627-b8a2-b9d2c5458881 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.336 543370 INFO oslo_service.periodic_task [req-de8b873a-de5a-45c7-9286-85f5b4d402dc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.336 543372 INFO oslo_service.periodic_task [req-8d1c7175-b28c-461e-b52d-e79b0a767501 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.338 543376 INFO oslo_service.periodic_task [req-9b895365-08b4-4b47-9682-e881457dda0c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.349 543400 INFO oslo_service.periodic_task [req-43866b37-b677-4afa-a961-d4cc177a741f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.345 543392 INFO oslo_service.periodic_task [req-9088f02a-a95f-4e49-8a5d-883a25e3e0a5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.354 543340 INFO oslo_service.periodic_task [req-3afca9ec-ba22-434e-8681-5e0712318dc0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.364 543406 INFO oslo_service.periodic_task [req-acf4bae6-3058-4fcc-8540-e81b92c978f2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.367 543384 INFO oslo_service.periodic_task [req-0fd12e2d-b673-42bd-bc61-4280dcb0becd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.385 543338 INFO oslo_service.periodic_task [req-6d7f6b4d-7778-44b3-b91b-3cd20a3223b2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.367 543350 INFO oslo_service.periodic_task [req-17255482-ee39-410c-9882-dd8aceb6b990 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.408 543354 INFO oslo_service.periodic_task [req-be56f4c8-fee0-40ce-995a-0f872daa6073 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.415 543380 INFO oslo_service.periodic_task [req-d8e82e38-35c7-4b13-998f-26285b57fd74 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.420 543348 INFO oslo_service.periodic_task [req-1e95f2ec-4872-43e5-aece-a71d7cc3e08c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.423 543386 INFO oslo_service.periodic_task [req-0c61ddae-1e44-42a8-bed1-968e862ced4c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.425 543425 INFO oslo_service.periodic_task [req-0dee3485-b042-4f72-a819-2de6f62ab62a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.438 543366 INFO oslo_service.periodic_task [req-72b635ca-801d-43da-a83d-32c00ddd39a2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.448 543408 INFO oslo_service.periodic_task [req-37c45277-5cbf-4c66-8733-d210940bfd95 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.450 543398 INFO oslo_service.periodic_task [req-ef757860-68d7-41a7-a970-b9afc69d06b4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.454 543390 INFO oslo_service.periodic_task [req-5b5d8f56-b188-4492-9010-b2b141f46ecd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.463 543382 INFO oslo_service.periodic_task [req-99a67cbb-f051-4072-a576-2603ba7d6bb3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.472 543358 INFO oslo_service.periodic_task [req-d00894b7-5d31-490c-b6e5-6f4fbd98b576 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.473 543326 INFO oslo_service.periodic_task [req-fb10c12f-7111-4bf8-ab92-d086381c86bf - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.476 543412 INFO oslo_service.periodic_task [req-ecb94066-85d3-4f45-b371-f527906cf540 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.474 543410 INFO oslo_service.periodic_task [req-c9983718-0a9a-4a8f-b27f-102a8f2cb1c7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.482 543402 INFO oslo_service.periodic_task [req-5b6eb036-02be-47a6-b8fa-bf295364683e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.490 543414 INFO oslo_service.periodic_task [req-aab86efe-005e-49ac-9e99-039819bbd867 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.485 543320 INFO oslo_service.periodic_task [req-24232b5b-28dd-4e76-bd31-df61d55ddcc4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.488 543318 INFO oslo_service.periodic_task [req-2b43ade4-eed3-410a-a2e6-23918918632f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.500 543404 INFO oslo_service.periodic_task [req-4e36d089-ee03-49a4-a428-8a521624adf1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.500 543378 INFO oslo_service.periodic_task [req-d3f29df5-813e-4210-bb5c-b701a541b5ea - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.498 543420 INFO oslo_service.periodic_task [req-b57b5a01-4635-4898-9f10-028e3632dc14 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.511 543416 INFO oslo_service.periodic_task [req-d68bc039-9aec-4740-baab-ac7ea0b07330 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.514 543344 INFO oslo_service.periodic_task [req-e8c36ea0-e485-4d18-9299-5e1ea8875b0d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.517 543356 INFO oslo_service.periodic_task [req-6e829414-668a-46cb-a4bc-52e474fe3a3a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.522 543328 INFO oslo_service.periodic_task [req-51666ce1-f260-4f0a-8d88-36b83c40553c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.548 543342 INFO oslo_service.periodic_task [req-9dbbee1e-c3bd-4ded-87a6-b113f068c52d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.551 543394 INFO oslo_service.periodic_task [req-d7a27524-6356-4d34-9aa8-1c8702a39cee - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.558 543368 INFO oslo_service.periodic_task [req-c5f6d0b6-f8d4-407a-b6f1-b7c84391a5e9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.559 543418 INFO oslo_service.periodic_task [req-38bc884a-7ec4-40d8-9256-4c244e6bdc30 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:58:30.757 543396 INFO oslo_service.periodic_task [req-13e69cec-74f2-4e47-b8a6-0e01d54236d7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
{1} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [1.665464s] ... ok
{2} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.704937s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.368322s] ... ok
{10} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.375773s] ... ok
{9} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.399150s] ... ok
{11} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.407669s] ... ok
{13} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.431843s] ... ok
{8} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.496819s] ... ok
{6} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.402441s] ... ok
{7} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.384025s] ... ok
{19} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [2.932239s] ... ok
{24} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{4} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [3.728684s] ... ok
{37} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [3.962151s] ... ok
{32} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.773678s] ... ok
{3} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.875410s] ... ok
{34} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.942950s] ... ok
{39} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.155610s] ... ok
{40} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [4.071923s] ... ok
{32} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.478401s] ... ok
{12} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [4.456931s] ... ok
{18} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [4.578529s] ... ok
{14} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [4.451126s] ... ok
{20} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [4.699687s] ... ok
{54} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [4.883599s] ... ok
{55} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [5.100053s] ... ok
{46} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.178260s] ... ok
{51} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.031952s] ... ok
{47} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.181327s] ... ok
{52} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.085990s] ... ok
{21} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [5.167582s] ... ok
{42} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.298309s] ... ok
{53} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [5.342229s] ... ok
{48} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.374280s] ... ok
{38} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.523490s] ... ok
{45} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.547792s] ... ok
{36} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [5.903025s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "instances" and FROM element "security_groups". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{35} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [6.123681s] ... ok
{25} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [6.279229s] ... ok
{33} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [6.111499s] ... ok
{23} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [6.365816s] ... ok
{26} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [6.183753s] ... ok
{22} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [6.217233s] ... ok
{27} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [6.270963s] ... ok
{28} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.499260s] ... ok
{30} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [6.543911s] ... ok
{29} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [6.665729s] ... ok
{49} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [6.550116s] ... ok
{17} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [6.767387s] ... ok
{31} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [6.998799s] ... ok
{13} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [4.675767s] ... ok
{50} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [6.985906s] ... ok
{16} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [7.573471s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/hub.py", line 476, in fire_timers
timer()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/timer.py", line 59, in __call__
cb(*args, **kw)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/greenthread.py", line 221, in main
result = function(*args, **kwargs)
File "/home/ubuntu/nova/nova/utils.py", line 655, in context_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/tests/fixtures/nova.py", line 1661, in test_case_id_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9744, in _live_migration_operation
LOG.error("Live Migration failure: %s", e, instance=instance)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9700, in _live_migration_operation
new_xml_str = libvirt_migrate.get_updated_guest_xml(
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 66, in get_updated_guest_xml
xml_doc = _update_vif_xml(xml_doc, migrate_data, get_vif_config)
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 396, in _update_vif_xml
interface_dev.insert(index + 1, address)
TypeError: Argument 'element' has incorrect type (expected lxml.etree._Element, got NoneType)
{15} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [7.027527s] ... ok
{34} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [3.169065s] ... ok
{43} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [7.280335s] ... ok
{44} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [7.309476s] ... ok
{11} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [5.264964s] ... ok
{19} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [4.720184s] ... ok
{41} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [7.132033s] ... ok
{47} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [2.549152s] ... ok
{5} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [5.761703s] ... ok
{46} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [2.952958s] ... ok
{24} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [4.910416s] ... ok
{30} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [1.689929s] ... ok
{8} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [5.798740s] ... ok
{10} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [6.443167s] ... ok
{22} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [2.505586s] ... ok
{52} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [3.537034s] ... ok
{1} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [7.517031s] ... ok
{25} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.136153s] ... ok
{42} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [3.915088s] ... ok
{37} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [5.464284s] ... ok
{27} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.112670s] ... ok
{15} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [2.472957s] ... ok
{23} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [3.448278s] ... ok
{12} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [5.276787s] ... ok
{38} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [4.152707s] ... ok
{32} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.391823s] ... FAILED
Captured traceback:
~~~~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/nova/tests/functional/regressions/test_bug_1944619.py", line 87, in test_rollback_pre_live_migration
self.libvirt_mock.mock.assert_called_once()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 891, in assert_called_once
raise AssertionError(msg)
AssertionError: Expected 'rollback_live_migration_at_source' to have been called once. Called 0 times.
Captured pythonlogging:
~~~~~~~~~~~~~~~~~~~~~~
2022-03-15 18:58:35,794 WARNING [oslo_policy.policy] JSON formatted policy_file support is deprecated since Victoria release. You need to use YAML format which will be default in future. You can use ``oslopolicy-convert-json-to-yaml`` tool to convert existing JSON-formatted policy file to YAML-formatted in backward compatible way: https://docs.openstack.org/oslo.policy/latest/cli/oslopolicy-convert-json-to-yaml.html.
2022-03-15 18:58:35,795 WARNING [oslo_policy.policy] JSON formatted policy_file support is deprecated since Victoria release. You need to use YAML format which will be default in future. You can use ``oslopolicy-convert-json-to-yaml`` tool to convert existing JSON-formatted policy file to YAML-formatted in backward compatible way: https://docs.openstack.org/oslo.policy/latest/cli/oslopolicy-convert-json-to-yaml.html.
2022-03-15 18:58:35,798 WARNING [oslo_policy.policy] Policy Rules ['os_compute_api:extensions', 'os_compute_api:os-floating-ip-pools', 'os_compute_api:os-quota-sets:defaults', 'os_compute_api:os-availability-zone:list', 'os_compute_api:limits', 'system_admin_api', 'system_reader_api', 'project_admin_api', 'project_member_api', 'project_reader_api', 'system_admin_or_owner', 'system_or_project_reader', 'os_compute_api:limits:other_project', 'os_compute_api:os-lock-server:unlock:unlock_override', 'os_compute_api:servers:create:zero_disk_flavor', 'compute:servers:resize:cross_cell'] specified in policy files are the same as the defaults provided by the service. You can remove these rules from policy files which will make maintenance easier. You can detect these redundant rules by ``oslopolicy-list-redundant`` tool also.
2022-03-15 18:58:35,922 INFO [nova.service] Starting conductor node (version 24.1.0)
2022-03-15 18:58:35,981 INFO [nova.service] Starting scheduler node (version 24.1.0)
2022-03-15 18:58:37,492 INFO [os_vif] Loaded VIF plugins: linux_bridge, noop, ovs
2022-03-15 18:58:37,542 INFO [nova.virt.driver] Loading compute driver 'libvirt.LibvirtDriver'
2022-03-15 18:58:37,545 INFO [nova.compute.provider_config] No provider configs found in /etc/nova/provider_config/. If files are present, ensure the Nova process has access.
2022-03-15 18:58:37,559 INFO [nova.service] Starting compute node (version 24.1.0)
2022-03-15 18:58:37,579 INFO [nova.virt.libvirt.host] Secure Boot support detected
2022-03-15 18:58:37,582 WARNING [nova.virt.libvirt.driver] my_ip address (10.230.62.178) was not found on any of the interfaces:
2022-03-15 18:58:37,582 WARNING [nova.virt.libvirt.driver] Running Nova with a libvirt version less than 7.0.0 is deprecated. The required minimum version of libvirt will be raised to 7.0.0 in the next release.
2022-03-15 18:58:37,583 WARNING [nova.virt.libvirt.driver] Running Nova with a QEMU version less than 5.2.0 is deprecated. The required minimum version of QEMU will be raised to 5.2.0 in the next release.
2022-03-15 18:58:37,631 WARNING [nova.compute.manager] Compute node src not found in the database. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 18:58:37,640 INFO [nova.compute.manager] Looking for unclaimed instances stuck in BUILDING status for nodes managed by this host
2022-03-15 18:58:37,658 WARNING [nova.compute.manager] No compute node record found for host src. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 18:58:37,667 WARNING [nova.compute.resource_tracker] No compute node record for src:src
2022-03-15 18:58:37,675 INFO [nova.compute.resource_tracker] Compute node record created for src:src with uuid: 52a8f74c-143e-4e64-9dca-a21073aab6f8
2022-03-15 18:58:38,038 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?in_tree=52a8f74c-143e-4e64-9dca-a21073aab6f8" status: 200 len: 26 microversion: 1.14
2022-03-15 18:58:38,055 INFO [placement.requestlog] 127.0.0.1 "POST /placement/resource_providers" status: 200 len: 826 microversion: 1.20
2022-03-15 18:58:38,056 INFO [nova.scheduler.client.report] [req-acea5389-1bd6-4e8f-9624
-8fcd13ea476e] Created resource provider record via placement API for resource provider with UUID 52a8f74c-143e-4e64-9dca-a21073aab6f8 and name src.
2022-03-15 18:58:38,057 INFO [nova.virt.libvirt.host] kernel doesn't support AMD SEV
2022-03-15 18:58:38,079 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/52a8f74c-143e-4e64-9dca-a21073aab6f8/inventories" status: 200 len: 407 microversion: 1.26
2022-03-15 18:58:38,091 INFO [placement.requestlog] 127.0.0.1 "GET /placement/traits?name=in:COMPUTE_NODE,COMPUTE_NET_VIF_MODEL_SPAPR_VLAN,COMPUTE_TRUSTED_CERTS,COMPUTE_STORAGE_BUS_SATA,HW_CPU_X86_AESNI,COMPUTE_VOLUME_ATTACH_WITH_TAG,COMPUTE_IMAGE_TYPE_QCOW2,COMPUTE_NET_ATTACH_INTERFACE,COMPUTE_GRAPHICS_MODEL_VGA,COMPUTE_GRAPHICS_MODEL_CIRRUS,COMPUTE_NET_VIF_MODEL_VIRTIO,COMPUTE_NET_VIF_MODEL_VMXNET3,COMPUTE_GRAPHICS_MODEL_BOCHS,HW_CPU_X86_VMX,COMPUTE_RESCUE_BFV,COMPUTE_IMAGE_TYPE_RAW,COMPUTE_NET_ATTACH_INTERFACE_WITH_TAG,COMPUTE_SECURITY_UEFI_SECURE_BOOT,COMPUTE_NET_VIF_MODEL_NE2K_PCI,COMPUTE_GRAPHICS_MODEL_VIRTIO,COMPUTE_STORAGE_BUS_VIRTIO,COMPUTE_NET_VIF_MODEL_PCNET,COMPUTE_ACCELERATORS,COMPUTE_GRAPHICS_MODEL_QXL,COMPUTE_NET_VIF_MODEL_E1000E,COMPUTE_NET_VIF_MODEL_RTL8139,COMPUTE_STORAGE_BUS_FDC,COMPUTE_IMAGE_TYPE_AMI,COMPUTE_VOLUME_EXTEND,COMPUTE_SOCKET_PCI_NUMA_AFFINITY,COMPUTE_DEVICE_TAGGING,COMPUTE_STORAGE_BUS_SCSI,COMPUTE_VOLUME_MULTI_ATTACH,COMPUTE_GRAPHICS_MODEL_NONE,COMPUTE_NET_VIF_MODEL_E1000,COMPUTE_STORAGE_BUS_USB,COMPUTE_IMAGE_TYPE_ARI,COMPUTE_IMAGE_TYPE_ISO,HW_CPU_X86_INTEL_VMX,COMPUTE_IMAGE_TYPE_AKI,COMPUTE_GRAPHICS_MODEL_VMVGA,COMPUTE_STORAGE_BUS_IDE" status: 200 len: 1231 microversion: 1.6
2022-03-15 18:58:38,125 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/52a8f74c-143e-4e64-9dca-a21073aab6f8/traits" status: 200 len: 1266 microversion: 1.6
2022-03-15 18:58:38,137 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?name=src" status: 200 len: 430 microversion: 1.0
2022-03-15 18:58:38,146 INFO [nova.virt.driver] Loading compute driver 'libvirt.LibvirtDriver'
2022-03-15 18:58:38,148 INFO [nova.compute.provider_config] No provider configs found in /etc/nova/provider_config/. If files are present, ensure the Nova process has access.
2022-03-15 18:58:38,154 INFO [nova.service] Starting compute node (version 24.1.0)
2022-03-15 18:58:38,163 INFO [nova.virt.libvirt.host] Secure Boot support detected
2022-03-15 18:58:38,164 WARNING [nova.virt.libvirt.driver] my_ip address (10.230.62.178) was not found on any of the interfaces:
2022-03-15 18:58:38,165 WARNING [nova.virt.libvirt.driver] Running Nova with a libvirt version less than 7.0.0 is deprecated. The required minimum version of libvirt will be raised to 7.0.0 in the next release.
2022-03-15 18:58:38,165 WARNING [nova.virt.libvirt.driver] Running Nova with a QEMU version less than 5.2.0 is deprecated. The required minimum version of QEMU will be raised to 5.2.0 in the next release.
2022-03-15 18:58:38,172 WARNING [nova.compute.manager] Compute node dest not found in the database. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 18:58:38,174 INFO [nova.compute.manager] Looking for unclaimed instances stuck in BUILDING status for nodes managed by this host
2022-03-15 18:58:38,183 WARNING [nova.compute.manager] No compute node record found for host dest. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 18:58:38,188 WARNING [nova.compute.resource_tracker] No compute node record for dest:dest
2022-03-15 18:58:38,191 INFO [nova.compute.resource_tracker] Compute node record created for dest:dest with uuid: c4fadc51-e266-4394-80a0-428efd34d8d7
2022-03-15 18:58:38,213 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?in_tree=c4fadc51-e266-4394-80a0-428efd34d8d7" status: 200 len: 26 microversion: 1.14
2022-03-15 18:58:38,220 INFO [placement.requestlog] 127.0.0.1 "POST /placement/resource_providers" status: 200 len: 827 microversion: 1.20
2022-03-15 18:58:38,221 INFO
[nova.scheduler.client.report] [req-0b36b96d-2049-44c5-b6a2-00667a5cafe2] Created resource provider record via placement API for resource provider with UUID c4fadc51-e266-4394-80a0-428efd34d8d7 and name dest.
2022-03-15 18:58:38,222 INFO [nova.virt.libvirt.host] kernel doesn't support AMD SEV
2022-03-15 18:58:38,240 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/c4fadc51-e266-4394-80a0-428efd34d8d7/inventories" status: 200 len: 407 microversion: 1.26
2022-03-15 18:58:38,250 INFO [placement.requestlog] 127.0.0.1 "GET /placement/traits?name=in:COMPUTE_NODE,COMPUTE_NET_VIF_MODEL_SPAPR_VLAN,COMPUTE_TRUSTED_CERTS,COMPUTE_STORAGE_BUS_SATA,HW_CPU_X86_AESNI,COMPUTE_VOLUME_ATTACH_WITH_TAG,COMPUTE_IMAGE_TYPE_QCOW2,COMPUTE_NET_ATTACH_INTERFACE,COMPUTE_GRAPHICS_MODEL_VGA,COMPUTE_GRAPHICS_MODEL_CIRRUS,COMPUTE_NET_VIF_MODEL_VIRTIO,COMPUTE_NET_VIF_MODEL_VMXNET3,COMPUTE_GRAPHICS_MODEL_BOCHS,HW_CPU_X86_VMX,COMPUTE_RESCUE_BFV,COMPUTE_IMAGE_TYPE_RAW,COMPUTE_NET_ATTACH_INTERFACE_WITH_TAG,COMPUTE_SECURITY_UEFI_SECURE_BOOT,COMPUTE_NET_VIF_MODEL_NE2K_PCI,COMPUTE_GRAPHICS_MODEL_VIRTIO,COMPUTE_STORAGE_BUS_VIRTIO,COMPUTE_NET_VIF_MODEL_PCNET,COMPUTE_ACCELERATORS,COMPUTE_GRAPHICS_MODEL_QXL,COMPUTE_NET_VIF_MODEL_E1000E,COMPUTE_NET_VIF_MODEL_RTL8139,COMPUTE_STORAGE_BUS_FDC,COMPUTE_IMAGE_TYPE_AMI,COMPUTE_VOLUME_EXTEND,COMPUTE_SOCKET_PCI_NUMA_AFFINITY,COMPUTE_DEVICE_TAGGING,COMPUTE_STORAGE_BUS_SCSI,COMPUTE_VOLUME_MULTI_ATTACH,COMPUTE_GRAPHICS_MODEL_NONE,COMPUTE_NET_VIF_MODEL_E1000,COMPUTE_STORAGE_BUS_USB,COMPUTE_IMAGE_TYPE_ARI,COMPUTE_IMAGE_TYPE_ISO,HW_CPU_X86_INTEL_VMX,COMPUTE_IMAGE_TYPE_AKI,COMPUTE_GRAPHICS_MODEL_VMVGA,COMPUTE_STORAGE_BUS_IDE" status: 200 len: 1231 microversion: 1.6
2022-03-15 18:58:38,288 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/c4fadc51-e266-4394-80a0-428efd34d8d7/traits" status: 200 len: 1266 microversion: 1.6
2022-03-15 18:58:38,302 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?name=dest" status: 200 len: 431 microversion: 1.0
2022-03-15 18:58:38,324 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/images/detail" status: 200 len: 5173 microversion: 2.35 time: 0.016749
2022-03-15 18:58:38,350 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/flavors/detail" status: 200 len: 2605 microversion: 2.90 time: 0.020899
2022-03-15 18:58:38,560 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocation_candidates?in_tree=52a8f74c-143e-4e64-9dca-a21073aab6f8&limit=1000&resources=DISK_GB%3A1%2CMEMORY_MB%3A512%2CVCPU%3A1&root_required=%21COMPUTE_STATUS_DISABLED" status: 200 len: 1735 microversion: 1.36
2022-03-15 18:58:38,586 INFO [nova.scheduler.host_manager] Host filter only checking host src and node src
2022-03-15 18:58:38,598 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/1c864cfa-d839-4bcf-a63c-ba9b6c332fe8" status: 200 len: 19 microversion: 1.28
2022-03-15 18:58:38,644 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/allocations/1c864cfa-d839-4bcf-a63c-ba9b6c332fe8" status: 204 len: 0 microversion: 1.36
2022-03-15 18:58:38,787 INFO [nova.api.openstack.requestlog] 127.0.0.1 "POST /v2.1/servers" status: 202 len: 414 microversion: 2.90 time: 0.432401
2022-03-15 18:58:38,919 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/1c864cfa-d839-4bcf-a63c-ba9b6c332fe8" status: 200 len: 230 microversion: 1.28
2022-03-15 18:58:38,924 INFO [nova.compute.claims] Claim successful on node src
2022-03-15 18:58:38,984 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/1c864cfa-d839-4bcf-a63c-ba9b6c332fe8" status: 200 len: 1779 microversion: 2.90 time: 0.193208
2022-03-15 18:58:39,210 INFO [nova.virt.libvirt.driver] Instance spawned successfully.
2022-03-15 18:58:39,210 INFO [nova.compute.manager] Took 0.09 seconds to spawn the instance on the hypervisor.
2022-03-15 18:58:39,260 INFO [nova.scheduler.host_manager] Received an update from an unknown host 'src'. Re-created its InstanceList.
2022-03-15 18:58:39,265 INFO [nova.compute.manager] Took 0.43 seconds to build instance.
2022-03-15 18:58:39,
576 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/1c864cfa-d839-4bcf-a63c-ba9b6c332fe8" status: 200 len: 1868 microversion: 2.90 time: 0.086713
2022-03-15 18:58:39,807 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/1c864cfa-d839-4bcf-a63c-ba9b6c332fe8" status: 200 len: 230 microversion: 1.28
2022-03-15 18:58:39,821 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/1c864cfa-d839-4bcf-a63c-ba9b6c332fe8" status: 200 len: 230 microversion: 1.28
2022-03-15 18:58:39,834 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/cf247c85-150a-4dec-8a45-c5f5a5fa72da" status: 200 len: 19 microversion: 1.28
2022-03-15 18:58:39,902 INFO [placement.requestlog] 127.0.0.1 "POST /placement/allocations" status: 204 len: 0 microversion: 1.28
2022-03-15 18:58:39,977 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocation_candidates?limit=1000&resources=DISK_GB%3A1%2CMEMORY_MB%3A512%2CVCPU%3A1&root_required=%21COMPUTE_STATUS_DISABLED" status: 200 len: 3423 microversion: 1.36
2022-03-15 18:58:40,019 INFO [nova.scheduler.host_manager] Host filter ignoring hosts: src
2022-03-15 18:58:40,030 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/1c864cfa-d839-4bcf-a63c-ba9b6c332fe8" status: 200 len: 19 microversion: 1.28
2022-03-15 18:58:40,058 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/allocations/1c864cfa-d839-4bcf-a63c-ba9b6c332fe8" status: 204 len: 0 microversion: 1.36
2022-03-15 18:58:40,124 INFO [nova.virt.libvirt.driver] Instance launched has CPU info: {"arch": "x86_64", "model": "Penryn", "vendor": "Intel", "topology": {"cells": 1, "sockets": 1, "cores": 4, "threads": 1}, "features": ["vmx", "aes", "monitor", "tm2", "ss", "xtpr", "acpi", "ds_cpl", "vme", "est", "pbe", "ht", "tm", "ds"]}
2022-03-15 18:58:40,142 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/1c864cfa-d839-4bcf-a63c-ba9b6c332fe8" status: 200 len: 230 microversion: 1.28
2022-03-15 18:58:40,264 INFO [nova.api.openstack.requestlog] 127.0.0.1 "POST /v2.1/servers/1c864cfa-d839-4bcf-a63c-ba9b6c332fe8/action" status: 202 len: 0 microversion: 2.90 time: 0.684966
2022-03-15 18:58:40,379 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/1c864cfa-d839-4bcf-a63c-ba9b6c332fe8" status: 200 len: 1878 microversion: 2.90 time: 0.106229
2022-03-15 18:58:40,403 ERROR [oslo_messaging.rpc.server] Exception during message handling
Traceback (most recent call last):
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/server.py", line 165, in _process_incoming
res = self.dispatcher.dispatch(message)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 309, in dispatch
return self._do_dispatch(endpoint, method, ctxt, args)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 229, in _do_dispatch
result = func(ctxt, **new_args)
File "/home/ubuntu/nova/nova/exception_wrapper.py", line 71, in wrapped
_emit_versioned_exception_notification(
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/exception_wrapper.py", line 63, in wrapped
return f(self, context, *args, **kw)
File "/home/ubuntu/nova/nova/compute/utils.py", line 1437, in decorated_function
return function(self, context, *args, **kwargs)
File "/home/ubuntu/nova/nova/compute/manager.py", line 211, in decorated_function
compute_utils.add_instance_fault_from_exc(context,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self
.value
File "/home/ubuntu/nova/nova/compute/manager.py", line 200, in decorated_function
return function(self, context, *args, **kwargs)
File "/home/ubuntu/nova/nova/compute/manager.py", line 8263, in pre_live_migration
bdm.save()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/compute/manager.py", line 8219, in pre_live_migration
migrate_data = self.driver.pre_live_migration(context,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1100, in __call__
return _mock_self._mock_call(*args, **kwargs)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1104, in _mock_call
return _mock_self._execute_mock_call(*args, **kwargs)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1161, in _execute_mock_call
raise effect
nova.exception.DestinationDiskExists: The supplied disk path (/var/non/existent) already exists, it is expected not to exist.
2022-03-15 18:58:40,404 ERROR [nova.compute.manager] Pre live migration failed at dest
Traceback (most recent call last):
File "/home/ubuntu/nova/nova/compute/manager.py", line 8394, in _do_pre_live_migration_from_source
migrate_data = self.compute_rpcapi.pre_live_migration(
File "/home/ubuntu/nova/nova/compute/rpcapi.py", line 944, in pre_live_migration
return cctxt.call(ctxt, 'pre_live_migration',
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/client.py", line 189, in call
result = self.transport._send(
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/transport.py", line 123, in _send
return self._driver.send(target, ctxt, message,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/_drivers/impl_fake.py", line 222, in send
return self._send(target, ctxt, message, wait_for_reply, timeout,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/_drivers/impl_fake.py", line 209, in _send
raise failure
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/server.py", line 165, in _process_incoming
res = self.dispatcher.dispatch(message)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 309, in dispatch
return self._do_dispatch(endpoint, method, ctxt, args)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 229, in _do_dispatch
result = func(ctxt, **new_args)
File "/home/ubuntu/nova/nova/exception_wrapper.py", line 71, in wrapped
_emit_versioned_exception_notification(
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/exception_wrapper.py", line 63, in wrapped
return f(self, context, *args, **kw)
File "/home/ubuntu/nova/nova/compute/utils.py", line 1437, in decorated_function
return function(self, context, *args, **kwargs)
File "/home/ubuntu/nova/nova/compute/manager.py", line 211, in decorated_function
compute_utils.add_instance_fault_from_exc(context,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/compute/manager.py", line 200, in dec
orated_function
return function(self, context, *args, **kwargs)
File "/home/ubuntu/nova/nova/compute/manager.py", line 8263, in pre_live_migration
bdm.save()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/compute/manager.py", line 8219, in pre_live_migration
migrate_data = self.driver.pre_live_migration(context,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1100, in __call__
return _mock_self._mock_call(*args, **kwargs)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1104, in _mock_call
return _mock_self._execute_mock_call(*args, **kwargs)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1161, in _execute_mock_call
raise effect
nova.exception.DestinationDiskExists: The supplied disk path (/var/non/existent) already exists, it is expected not to exist.
2022-03-15 18:58:40,450 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/os-migrations" status: 200 len: 510 microversion: 2.90 time: 0.066878
2022-03-15 18:58:40,454 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/cf247c85-150a-4dec-8a45-c5f5a5fa72da" status: 200 len: 230 microversion: 1.28
2022-03-15 18:58:40,455 INFO [nova.compute.manager] Swapping old allocation on dict_keys(['52a8f74c-143e-4e64-9dca-a21073aab6f8']) held by migration cf247c85-150a-4dec-8a45-c5f5a5fa72da for instance
2022-03-15 18:58:40,465 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/cf247c85-150a-4dec-8a45-c5f5a5fa72da" status: 200 len: 230 microversion: 1.28
2022-03-15 18:58:40,478 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/1c864cfa-d839-4bcf-a63c-ba9b6c332fe8" status: 200 len: 230 microversion: 1.28
2022-03-15 18:58:40,520 INFO [placement.requestlog] 127.0.0.1 "POST /placement/allocations" status: 204 len: 0 microversion: 1.28
2022-03-15 18:58:40,577 WARNING [nova.compute.manager] Unable to cancel live migration.
{26} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.578955s] ... ok
{0} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [10.070631s] ... ok
{16} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [2.749468s] ... ok
{55} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [4.759099s] ... ok
{54} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [5.094582s] ... ok
{51} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [4.747120s] ... ok
{9} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.778253s] ... ok
{3} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [5.948434s] ... ok
{36} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [4.000169s] ... ok
{30} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [1.800415s] ... ok
{39} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [6.022470s] ... ok
{40} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [5.924308s] ... ok
{7} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [7.677202s] ... ok
{29} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [3.602754s] ... ok
{45} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [4.573758s] ... ok
{53} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [4.789011s] ... ok
{6} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.826382s] ... ok
{31} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.402205s] ... ok
{33} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [4.210765s] ... ok
{2} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [8.561147s] ... ok
{48} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [5.064208s] ... ok
{4} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [7.406306s] ... ok
{17} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [4.081665s] ... ok
{49} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.259466s] ... ok
{28} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [4.449170s] ... ok
{31} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.702760s] ... ok
{20} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.421842s] ... ok
{29} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [1.019130s] ... ok
{0} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.476761s] ... ok
{14} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [6.694749s] ... ok
{18} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [6.788915s] ... ok
{44} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [3.965652s] ... ok
{43} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [4.484764s] ... ok
{50} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [4.654575s] ... ok
{35} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [5.626216s] ... ok
{41} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.355072s] ... ok
{21} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [6.949494s] ... ok
==============================
Failed 1 tests - output below:
==============================
nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration
------------------------------------------------------------------------------------------------------------------
Captured traceback:
~~~~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/nova/tests/functional/regressions/test_bug_1944619.py", line 87, in test_rollback_pre_live_migration
self.libvirt_mock.mock.assert_called_once()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 891, in assert_called_once
raise AssertionError(msg)
AssertionError: Expected 'rollback_live_migration_at_source' to have been called once. Called 0 times.
Captured pythonlogging:
~~~~~~~~~~~~~~~~~~~~~~
2022-03-15 18:58:35,794 WARNING [oslo_policy.policy] JSON formatted policy_file support is deprecated since Victoria release. You need to use YAML format which will be default in future. You can use ``oslopolicy-convert-json-to-yaml`` tool to convert existing JSON-formatted policy file to YAML-formatted in backward compatible way: https://docs.openstack.org/oslo.policy/latest/cli/oslopolicy-convert-json-to-yaml.html.
2022-03-15 18:58:35,795 WARNING [oslo_policy.policy] JSON formatted policy_file support is deprecated since Victoria release. You need to use YAML format which will be default in future. You can use ``oslopolicy-convert-json-to-yaml`` tool to convert existing JSON-formatted policy file to YAML-formatted in backward compatible way: https://docs.openstack.org/oslo.policy/latest/cli/oslopolicy-convert-json-to-yaml.html.
2022-03-15 18:58:35,798 WARNING [oslo_policy.policy] Policy Rules ['os_compute_api:extensions', 'os_compute_api:os-floating-ip-pools', 'os_compute_api:os-quota-sets:defaults', 'os_compute_api:os-availability-zone:list', 'os_compute_api:limits', 'system_admin_api', 'system_reader_api', 'project_admin_api', 'project_member_api', 'project_reader_api', 'system_admin_or_owner', 'system_or_project_reader', 'os_compute_api:limits:other_project', 'os_compute_api:os-lock-server:unlock:unlock_override', 'os_compute_api:servers:create:zero_disk_flavor', 'compute:servers:resize:cross_cell'] specified in policy files are the same as the defaults provided by the service. You can remove these rules from policy files which will make maintenance easier. You can detect these redundant rules by ``oslopolicy-list-redundant`` tool also.
2022-03-15 18:58:35,922 INFO [nova.service] Starting conductor node (version 24.1.0)
2022-03-15 18:58:35,981 INFO [nova.service] Starting scheduler node (version 24.1.0)
2022-03-15 18:58:37,492 INFO [os_vif] Loaded VIF plugins: linux_bridge, noop, ovs
2022-03-15 18:58:37,542 INFO [nova.virt.driver] Loading compute driver 'libvirt.LibvirtDriver'
2022-03-15 18:58:37,545 INFO [nova.compute.provider_config] No provider configs found in /etc/nova/provider_config/. If files are present, ensure the Nova process has access.
2022-03-15 18:58:37,559 INFO [nova.service] Starting compute node (version 24.1.0)
2022-03-15 18:58:37,579 INFO [nova.virt.libvirt.host] Secure Boot support detected
2022-03-15 18:58:37,582 WARNING [nova.virt.libvirt.driver] my_ip address (10.230.62.178) was not found on any of the interfaces:
2022-03-15 18:58:37,582 WARNING [nova.virt.libvirt.driver] Running Nova with a libvirt version less than 7.0.0 is deprecated. The required minimum version of libvirt will be raised to 7.0.0 in the next release.
2022-03-15 18:58:37,583 WARNING [nova.virt.libvirt.driver] Running Nova with a QEMU version less than 5.2.0 is deprecated. The required minimum version of QEMU will be raised to 5.2.0 in the next release.
2022-03-15 18:58:37,631 WARNING [nova.compute.manager] Compute node src not found in the database. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 18:58:37,640 INFO [nova.compute.manager] Looking for unclaimed instances stuck in BUILDING status for nodes managed by this host
2022-03-15 18:58:37,658 WARNING [nova.compute.manager] No compute node record found for host src. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 18:58:37,667 WARNING [nova.compute.resource_tracker] No compute node record for src:src
2022-03-15 18:58:37,675 INFO [nova.compute.resource_tracker] Compute node record created for src:src with uuid: 52a8f74c-143e-4e64-9dca-a21073aab6f8
2022-03-15 18:58:38,038 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?in_tree=52a8f74c-143e-4e64-9dca-a21073aab6f8" status: 200 len: 26 microversion: 1.14
2022-03-15 18:58:38,055 INFO [placement.requestlog] 127.0.0.1 "POST /placement/resource_providers" status: 200 len: 826 microversion: 1.20
2022-03-15 18:58:38,056 INFO [nova.scheduler.client.report] [req-acea5389-1bd6-4e8f-9624
-8fcd13ea476e] Created resource provider record via placement API for resource provider with UUID 52a8f74c-143e-4e64-9dca-a21073aab6f8 and name src.
2022-03-15 18:58:38,057 INFO [nova.virt.libvirt.host] kernel doesn't support AMD SEV
2022-03-15 18:58:38,079 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/52a8f74c-143e-4e64-9dca-a21073aab6f8/inventories" status: 200 len: 407 microversion: 1.26
2022-03-15 18:58:38,091 INFO [placement.requestlog] 127.0.0.1 "GET /placement/traits?name=in:COMPUTE_NODE,COMPUTE_NET_VIF_MODEL_SPAPR_VLAN,COMPUTE_TRUSTED_CERTS,COMPUTE_STORAGE_BUS_SATA,HW_CPU_X86_AESNI,COMPUTE_VOLUME_ATTACH_WITH_TAG,COMPUTE_IMAGE_TYPE_QCOW2,COMPUTE_NET_ATTACH_INTERFACE,COMPUTE_GRAPHICS_MODEL_VGA,COMPUTE_GRAPHICS_MODEL_CIRRUS,COMPUTE_NET_VIF_MODEL_VIRTIO,COMPUTE_NET_VIF_MODEL_VMXNET3,COMPUTE_GRAPHICS_MODEL_BOCHS,HW_CPU_X86_VMX,COMPUTE_RESCUE_BFV,COMPUTE_IMAGE_TYPE_RAW,COMPUTE_NET_ATTACH_INTERFACE_WITH_TAG,COMPUTE_SECURITY_UEFI_SECURE_BOOT,COMPUTE_NET_VIF_MODEL_NE2K_PCI,COMPUTE_GRAPHICS_MODEL_VIRTIO,COMPUTE_STORAGE_BUS_VIRTIO,COMPUTE_NET_VIF_MODEL_PCNET,COMPUTE_ACCELERATORS,COMPUTE_GRAPHICS_MODEL_QXL,COMPUTE_NET_VIF_MODEL_E1000E,COMPUTE_NET_VIF_MODEL_RTL8139,COMPUTE_STORAGE_BUS_FDC,COMPUTE_IMAGE_TYPE_AMI,COMPUTE_VOLUME_EXTEND,COMPUTE_SOCKET_PCI_NUMA_AFFINITY,COMPUTE_DEVICE_TAGGING,COMPUTE_STORAGE_BUS_SCSI,COMPUTE_VOLUME_MULTI_ATTACH,COMPUTE_GRAPHICS_MODEL_NONE,COMPUTE_NET_VIF_MODEL_E1000,COMPUTE_STORAGE_BUS_USB,COMPUTE_IMAGE_TYPE_ARI,COMPUTE_IMAGE_TYPE_ISO,HW_CPU_X86_INTEL_VMX,COMPUTE_IMAGE_TYPE_AKI,COMPUTE_GRAPHICS_MODEL_VMVGA,COMPUTE_STORAGE_BUS_IDE" status: 200 len: 1231 microversion: 1.6
2022-03-15 18:58:38,125 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/52a8f74c-143e-4e64-9dca-a21073aab6f8/traits" status: 200 len: 1266 microversion: 1.6
2022-03-15 18:58:38,137 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?name=src" status: 200 len: 430 microversion: 1.0
2022-03-15 18:58:38,146 INFO [nova.virt.driver] Loading compute driver 'libvirt.LibvirtDriver'
2022-03-15 18:58:38,148 INFO [nova.compute.provider_config] No provider configs found in /etc/nova/provider_config/. If files are present, ensure the Nova process has access.
2022-03-15 18:58:38,154 INFO [nova.service] Starting compute node (version 24.1.0)
2022-03-15 18:58:38,163 INFO [nova.virt.libvirt.host] Secure Boot support detected
2022-03-15 18:58:38,164 WARNING [nova.virt.libvirt.driver] my_ip address (10.230.62.178) was not found on any of the interfaces:
2022-03-15 18:58:38,165 WARNING [nova.virt.libvirt.driver] Running Nova with a libvirt version less than 7.0.0 is deprecated. The required minimum version of libvirt will be raised to 7.0.0 in the next release.
2022-03-15 18:58:38,165 WARNING [nova.virt.libvirt.driver] Running Nova with a QEMU version less than 5.2.0 is deprecated. The required minimum version of QEMU will be raised to 5.2.0 in the next release.
2022-03-15 18:58:38,172 WARNING [nova.compute.manager] Compute node dest not found in the database. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 18:58:38,174 INFO [nova.compute.manager] Looking for unclaimed instances stuck in BUILDING status for nodes managed by this host
2022-03-15 18:58:38,183 WARNING [nova.compute.manager] No compute node record found for host dest. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 18:58:38,188 WARNING [nova.compute.resource_tracker] No compute node record for dest:dest
2022-03-15 18:58:38,191 INFO [nova.compute.resource_tracker] Compute node record created for dest:dest with uuid: c4fadc51-e266-4394-80a0-428efd34d8d7
2022-03-15 18:58:38,213 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?in_tree=c4fadc51-e266-4394-80a0-428efd34d8d7" status: 200 len: 26 microversion: 1.14
2022-03-15 18:58:38,220 INFO [placement.requestlog] 127.0.0.1 "POST /placement/resource_providers" status: 200 len: 827 microversion: 1.20
2022-03-15 18:58:38,221 INFO
[nova.scheduler.client.report] [req-0b36b96d-2049-44c5-b6a2-00667a5cafe2] Created resource provider record via placement API for resource provider with UUID c4fadc51-e266-4394-80a0-428efd34d8d7 and name dest.
2022-03-15 18:58:38,222 INFO [nova.virt.libvirt.host] kernel doesn't support AMD SEV
2022-03-15 18:58:38,240 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/c4fadc51-e266-4394-80a0-428efd34d8d7/inventories" status: 200 len: 407 microversion: 1.26
2022-03-15 18:58:38,250 INFO [placement.requestlog] 127.0.0.1 "GET /placement/traits?name=in:COMPUTE_NODE,COMPUTE_NET_VIF_MODEL_SPAPR_VLAN,COMPUTE_TRUSTED_CERTS,COMPUTE_STORAGE_BUS_SATA,HW_CPU_X86_AESNI,COMPUTE_VOLUME_ATTACH_WITH_TAG,COMPUTE_IMAGE_TYPE_QCOW2,COMPUTE_NET_ATTACH_INTERFACE,COMPUTE_GRAPHICS_MODEL_VGA,COMPUTE_GRAPHICS_MODEL_CIRRUS,COMPUTE_NET_VIF_MODEL_VIRTIO,COMPUTE_NET_VIF_MODEL_VMXNET3,COMPUTE_GRAPHICS_MODEL_BOCHS,HW_CPU_X86_VMX,COMPUTE_RESCUE_BFV,COMPUTE_IMAGE_TYPE_RAW,COMPUTE_NET_ATTACH_INTERFACE_WITH_TAG,COMPUTE_SECURITY_UEFI_SECURE_BOOT,COMPUTE_NET_VIF_MODEL_NE2K_PCI,COMPUTE_GRAPHICS_MODEL_VIRTIO,COMPUTE_STORAGE_BUS_VIRTIO,COMPUTE_NET_VIF_MODEL_PCNET,COMPUTE_ACCELERATORS,COMPUTE_GRAPHICS_MODEL_QXL,COMPUTE_NET_VIF_MODEL_E1000E,COMPUTE_NET_VIF_MODEL_RTL8139,COMPUTE_STORAGE_BUS_FDC,COMPUTE_IMAGE_TYPE_AMI,COMPUTE_VOLUME_EXTEND,COMPUTE_SOCKET_PCI_NUMA_AFFINITY,COMPUTE_DEVICE_TAGGING,COMPUTE_STORAGE_BUS_SCSI,COMPUTE_VOLUME_MULTI_ATTACH,COMPUTE_GRAPHICS_MODEL_NONE,COMPUTE_NET_VIF_MODEL_E1000,COMPUTE_STORAGE_BUS_USB,COMPUTE_IMAGE_TYPE_ARI,COMPUTE_IMAGE_TYPE_ISO,HW_CPU_X86_INTEL_VMX,COMPUTE_IMAGE_TYPE_AKI,COMPUTE_GRAPHICS_MODEL_VMVGA,COMPUTE_STORAGE_BUS_IDE" status: 200 len: 1231 microversion: 1.6
2022-03-15 18:58:38,288 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/c4fadc51-e266-4394-80a0-428efd34d8d7/traits" status: 200 len: 1266 microversion: 1.6
2022-03-15 18:58:38,302 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?name=dest" status: 200 len: 431 microversion: 1.0
2022-03-15 18:58:38,324 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/images/detail" status: 200 len: 5173 microversion: 2.35 time: 0.016749
2022-03-15 18:58:38,350 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/flavors/detail" status: 200 len: 2605 microversion: 2.90 time: 0.020899
2022-03-15 18:58:38,560 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocation_candidates?in_tree=52a8f74c-143e-4e64-9dca-a21073aab6f8&limit=1000&resources=DISK_GB%3A1%2CMEMORY_MB%3A512%2CVCPU%3A1&root_required=%21COMPUTE_STATUS_DISABLED" status: 200 len: 1735 microversion: 1.36
2022-03-15 18:58:38,586 INFO [nova.scheduler.host_manager] Host filter only checking host src and node src
2022-03-15 18:58:38,598 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/1c864cfa-d839-4bcf-a63c-ba9b6c332fe8" status: 200 len: 19 microversion: 1.28
2022-03-15 18:58:38,644 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/allocations/1c864cfa-d839-4bcf-a63c-ba9b6c332fe8" status: 204 len: 0 microversion: 1.36
2022-03-15 18:58:38,787 INFO [nova.api.openstack.requestlog] 127.0.0.1 "POST /v2.1/servers" status: 202 len: 414 microversion: 2.90 time: 0.432401
2022-03-15 18:58:38,919 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/1c864cfa-d839-4bcf-a63c-ba9b6c332fe8" status: 200 len: 230 microversion: 1.28
2022-03-15 18:58:38,924 INFO [nova.compute.claims] Claim successful on node src
2022-03-15 18:58:38,984 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/1c864cfa-d839-4bcf-a63c-ba9b6c332fe8" status: 200 len: 1779 microversion: 2.90 time: 0.193208
2022-03-15 18:58:39,210 INFO [nova.virt.libvirt.driver] Instance spawned successfully.
2022-03-15 18:58:39,210 INFO [nova.compute.manager] Took 0.09 seconds to spawn the instance on the hypervisor.
2022-03-15 18:58:39,260 INFO [nova.scheduler.host_manager] Received an update from an unknown host 'src'. Re-created its InstanceList.
2022-03-15 18:58:39,265 INFO [nova.compute.manager] Took 0.43 seconds to build instance.
2022-03-15 18:58:39,
576 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/1c864cfa-d839-4bcf-a63c-ba9b6c332fe8" status: 200 len: 1868 microversion: 2.90 time: 0.086713
2022-03-15 18:58:39,807 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/1c864cfa-d839-4bcf-a63c-ba9b6c332fe8" status: 200 len: 230 microversion: 1.28
2022-03-15 18:58:39,821 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/1c864cfa-d839-4bcf-a63c-ba9b6c332fe8" status: 200 len: 230 microversion: 1.28
2022-03-15 18:58:39,834 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/cf247c85-150a-4dec-8a45-c5f5a5fa72da" status: 200 len: 19 microversion: 1.28
2022-03-15 18:58:39,902 INFO [placement.requestlog] 127.0.0.1 "POST /placement/allocations" status: 204 len: 0 microversion: 1.28
2022-03-15 18:58:39,977 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocation_candidates?limit=1000&resources=DISK_GB%3A1%2CMEMORY_MB%3A512%2CVCPU%3A1&root_required=%21COMPUTE_STATUS_DISABLED" status: 200 len: 3423 microversion: 1.36
2022-03-15 18:58:40,019 INFO [nova.scheduler.host_manager] Host filter ignoring hosts: src
2022-03-15 18:58:40,030 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/1c864cfa-d839-4bcf-a63c-ba9b6c332fe8" status: 200 len: 19 microversion: 1.28
2022-03-15 18:58:40,058 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/allocations/1c864cfa-d839-4bcf-a63c-ba9b6c332fe8" status: 204 len: 0 microversion: 1.36
2022-03-15 18:58:40,124 INFO [nova.virt.libvirt.driver] Instance launched has CPU info: {"arch": "x86_64", "model": "Penryn", "vendor": "Intel", "topology": {"cells": 1, "sockets": 1, "cores": 4, "threads": 1}, "features": ["vmx", "aes", "monitor", "tm2", "ss", "xtpr", "acpi", "ds_cpl", "vme", "est", "pbe", "ht", "tm", "ds"]}
2022-03-15 18:58:40,142 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/1c864cfa-d839-4bcf-a63c-ba9b6c332fe8" status: 200 len: 230 microversion: 1.28
2022-03-15 18:58:40,264 INFO [nova.api.openstack.requestlog] 127.0.0.1 "POST /v2.1/servers/1c864cfa-d839-4bcf-a63c-ba9b6c332fe8/action" status: 202 len: 0 microversion: 2.90 time: 0.684966
2022-03-15 18:58:40,379 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/1c864cfa-d839-4bcf-a63c-ba9b6c332fe8" status: 200 len: 1878 microversion: 2.90 time: 0.106229
2022-03-15 18:58:40,403 ERROR [oslo_messaging.rpc.server] Exception during message handling
Traceback (most recent call last):
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/server.py", line 165, in _process_incoming
res = self.dispatcher.dispatch(message)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 309, in dispatch
return self._do_dispatch(endpoint, method, ctxt, args)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 229, in _do_dispatch
result = func(ctxt, **new_args)
File "/home/ubuntu/nova/nova/exception_wrapper.py", line 71, in wrapped
_emit_versioned_exception_notification(
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/exception_wrapper.py", line 63, in wrapped
return f(self, context, *args, **kw)
File "/home/ubuntu/nova/nova/compute/utils.py", line 1437, in decorated_function
return function(self, context, *args, **kwargs)
File "/home/ubuntu/nova/nova/compute/manager.py", line 211, in decorated_function
compute_utils.add_instance_fault_from_exc(context,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self
.value
File "/home/ubuntu/nova/nova/compute/manager.py", line 200, in decorated_function
return function(self, context, *args, **kwargs)
File "/home/ubuntu/nova/nova/compute/manager.py", line 8263, in pre_live_migration
bdm.save()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/compute/manager.py", line 8219, in pre_live_migration
migrate_data = self.driver.pre_live_migration(context,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1100, in __call__
return _mock_self._mock_call(*args, **kwargs)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1104, in _mock_call
return _mock_self._execute_mock_call(*args, **kwargs)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1161, in _execute_mock_call
raise effect
nova.exception.DestinationDiskExists: The supplied disk path (/var/non/existent) already exists, it is expected not to exist.
2022-03-15 18:58:40,404 ERROR [nova.compute.manager] Pre live migration failed at dest
Traceback (most recent call last):
File "/home/ubuntu/nova/nova/compute/manager.py", line 8394, in _do_pre_live_migration_from_source
migrate_data = self.compute_rpcapi.pre_live_migration(
File "/home/ubuntu/nova/nova/compute/rpcapi.py", line 944, in pre_live_migration
return cctxt.call(ctxt, 'pre_live_migration',
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/client.py", line 189, in call
result = self.transport._send(
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/transport.py", line 123, in _send
return self._driver.send(target, ctxt, message,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/_drivers/impl_fake.py", line 222, in send
return self._send(target, ctxt, message, wait_for_reply, timeout,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/_drivers/impl_fake.py", line 209, in _send
raise failure
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/server.py", line 165, in _process_incoming
res = self.dispatcher.dispatch(message)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 309, in dispatch
return self._do_dispatch(endpoint, method, ctxt, args)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 229, in _do_dispatch
result = func(ctxt, **new_args)
File "/home/ubuntu/nova/nova/exception_wrapper.py", line 71, in wrapped
_emit_versioned_exception_notification(
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/exception_wrapper.py", line 63, in wrapped
return f(self, context, *args, **kw)
File "/home/ubuntu/nova/nova/compute/utils.py", line 1437, in decorated_function
return function(self, context, *args, **kwargs)
File "/home/ubuntu/nova/nova/compute/manager.py", line 211, in decorated_function
compute_utils.add_instance_fault_from_exc(context,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/compute/manager.py", line 200, in dec
orated_function
return function(self, context, *args, **kwargs)
File "/home/ubuntu/nova/nova/compute/manager.py", line 8263, in pre_live_migration
bdm.save()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/compute/manager.py", line 8219, in pre_live_migration
migrate_data = self.driver.pre_live_migration(context,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1100, in __call__
return _mock_self._mock_call(*args, **kwargs)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1104, in _mock_call
return _mock_self._execute_mock_call(*args, **kwargs)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1161, in _execute_mock_call
raise effect
nova.exception.DestinationDiskExists: The supplied disk path (/var/non/existent) already exists, it is expected not to exist.
2022-03-15 18:58:40,450 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/os-migrations" status: 200 len: 510 microversion: 2.90 time: 0.066878
2022-03-15 18:58:40,454 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/cf247c85-150a-4dec-8a45-c5f5a5fa72da" status: 200 len: 230 microversion: 1.28
2022-03-15 18:58:40,455 INFO [nova.compute.manager] Swapping old allocation on dict_keys(['52a8f74c-143e-4e64-9dca-a21073aab6f8']) held by migration cf247c85-150a-4dec-8a45-c5f5a5fa72da for instance
2022-03-15 18:58:40,465 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/cf247c85-150a-4dec-8a45-c5f5a5fa72da" status: 200 len: 230 microversion: 1.28
2022-03-15 18:58:40,478 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/1c864cfa-d839-4bcf-a63c-ba9b6c332fe8" status: 200 len: 230 microversion: 1.28
2022-03-15 18:58:40,520 INFO [placement.requestlog] 127.0.0.1 "POST /placement/allocations" status: 204 len: 0 microversion: 1.28
2022-03-15 18:58:40,577 WARNING [nova.compute.manager] Unable to cancel live migration.
======
Totals
======
Ran: 116 tests in 12.7235 sec.
- Passed: 114
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 1
Sum of execute time for each test: 553.9298 sec.
==============
Worker Balance
==============
- Worker 0 (2 tests) => 0:00:11.549654
- Worker 1 (2 tests) => 0:00:09.184624
- Worker 2 (2 tests) => 0:00:10.268197
- Worker 3 (2 tests) => 0:00:09.825043
- Worker 4 (2 tests) => 0:00:11.135879
- Worker 5 (2 tests) => 0:00:08.132640
- Worker 6 (2 tests) => 0:00:10.231557
- Worker 7 (2 tests) => 0:00:10.064005
- Worker 8 (2 tests) => 0:00:08.298466
- Worker 9 (2 tests) => 0:00:10.179660
- Worker 10 (2 tests) => 0:00:08.822131
- Worker 11 (2 tests) => 0:00:07.674202
- Worker 12 (2 tests) => 0:00:09.734812
- Worker 13 (2 tests) => 0:00:07.109907
- Worker 14 (2 tests) => 0:00:11.146972
- Worker 15 (2 tests) => 0:00:09.502629
- Worker 16 (2 tests) => 0:00:10.324810
- Worker 17 (2 tests) => 0:00:10.850573
- Worker 18 (2 tests) => 0:00:11.369311
- Worker 19 (2 tests) => 0:00:07.654665
- Worker 20 (2 tests) => 0:00:11.123532
- Worker 21 (2 tests) => 0:00:12.118001
- Worker 22 (2 tests) => 0:00:08.724669
- Worker 23 (2 tests) => 0:00:09.817337
- Worker 24 (2 tests) => 0:00:08.209552
- Worker 25 (2 tests) => 0:00:09.417089
- Worker 26 (2 tests) => 0:00:09.764646
- Worker 27 (2 tests) => 0:00:09.384550
- Worker 28 (2 tests) => 0:00:10.950319
- Worker 29 (3 tests) => 0:00:11.290460
- Worker 30 (3 tests) => 0:00:10.037071
- Worker 31 (3 tests) => 0:00:11.106610
- Worker 32 (3 tests) => 0:00:09.646657
- Worker 33 (2 tests) => 0:00:10.324301
- Worker 34 (2 tests) => 0:00:07.112761
- Worker 35 (2 tests) => 0:00:11.751418
- Worker 36 (2 tests) => 0:00:09.904740
- Worker 37 (2 tests) => 0:00:09.427336
- Worker 38 (2 tests) => 0:00:09.677769
- Worker 39 (2 tests) => 0:00:10.179354
- Worker 40 (2 tests) => 0:00:09.997484
- Worker 41 (2 tests) => 0:00:11.488585
- Worker 42 (2 tests) => 0:00:09.215055
- Worker 43 (2 tests) => 0:00:11.766791
- Worker 44 (2 tests) => 0:00:11.278530
- Worker 45 (2 tests) => 0:00:10.123753
- Worker 46 (2 tests) => 0:00:08.133426
- Worker 47 (2 tests) => 0:00:07.731849
- Worker 48 (2 tests) => 0:00:10.439822
- Worker 49 (2 tests) => 0:00:10.810766
- Worker 50 (2 tests) => 0:00:11.643476
- Worker 51 (2 tests) => 0:00:09.781285
- Worker 52 (2 tests) => 0:00:08.624549
- Worker 53 (2 tests) => 0:00:10.132581
- Worker 54 (2 tests) => 0:00:09.980152
- Worker 55 (2 tests) => 0:00:09.861343
ERROR: InvocationError for command /home/ubuntu/nova/.tox/functional-py39/bin/stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions (exited with code 1)
__________________________________________________________________________________ summary __________________________________________________________________________________
ERROR: functional-py39: commands failed
Tox run 10
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/easy_install.py:160: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
functional-py39 develop-inst-noop: /home/ubuntu/nova
functional-py39 installed: alembic==1.7.6,amqp==5.0.9,appdirs==1.4.4,attrs==21.4.0,automaton==2.5.0,autopage==0.5.0,bandit==1.7.4,bcrypt==3.2.0,cachetools==5.0.0,castellan==3.10.1,certifi==2021.10.8,cffi==1.15.0,charset-normalizer==2.0.12,cliff==3.10.1,cmd2==2.4.0,colorama==0.4.4,coverage==6.3.2,cryptography==36.0.1,cursive==0.2.2,ddt==1.4.4,debtcollector==2.4.0,decorator==5.1.1,dnspython==2.1.0,dogpile.cache==1.1.5,eventlet==0.33.0,extras==1.0.0,fasteners==0.17.3,fixtures==3.0.0,flake8==3.8.4,future==0.18.2,futurist==2.4.0,gabbi==2.4.0,gitdb==4.0.9,GitPython==3.1.27,greenlet==1.1.2,hacking==3.1.0,idna==3.3,iniconfig==1.1.1,iso8601==1.0.2,Jinja2==3.0.3,jmespath==0.10.0,jsonpatch==1.32,jsonpath-rw==1.4.0,jsonpath-rw-ext==1.2.2,jsonpointer==2.2,jsonschema==3.2.0,keystoneauth1==4.5.0,keystonemiddleware==9.4.0,kombu==5.2.4,lxml==4.8.0,Mako==1.1.6,MarkupSafe==2.1.1,mccabe==0.6.1,microversion-parse==1.0.1,mock==4.0.3,msgpack==1.0.3,munch==2.5.0,mypy==0.931,mypy-extensions==0.4.3,netaddr==0.8.0,netifaces==0.11.0,networkx==2.7.1,-e git+https://review.opendev.org/openstack/nova@d43538712c034023bdb3e25cd7adfdee409ed596#egg=nova,numpy==1.22.3,openstack-placement==6.0.0,openstacksdk==0.61.0,os-brick==5.2.0,os-client-config==2.1.0,os-resource-classes==1.1.0,os-service-types==1.7.0,os-traits==2.7.0,os-vif==2.7.1,os-win==5.6.0,osc-lib==2.5.0,oslo.cache==2.10.1,oslo.concurrency==4.5.0,oslo.config==8.8.0,oslo.context==4.1.0,oslo.db==11.2.0,oslo.i18n==5.1.0,oslo.log==4.7.0,oslo.messaging==12.13.0,oslo.metrics==0.4.0,oslo.middleware==4.5.1,oslo.policy==3.11.0,oslo.privsep==2.7.0,oslo.reports==2.3.0,oslo.rootwrap==6.3.1,oslo.serialization==4.3.0,oslo.service==2.8.0,oslo.upgradecheck==1.5.0,oslo.utils==4.12.2,oslo.versionedobjects==2.6.0,oslotest==4.5.0,osprofiler==3.4.2,ovs==2.16.0,ovsdbapp==1.15.1,packaging==21.3,paramiko==2.8.1,Paste==3.5.0,PasteDeploy==2.1.1,pbr==5.8.1,pluggy==1.0.0,ply==3.11,prettytable==3.2.0,prometheus-client==0.13.1,psutil==5.9.0,psycopg2-binary==2.9.3,py==1.11.0,pycadf==3.1.1,pycodestyle==2.6.0,pycparser==2.21,pydot==1.4.2,pyflakes==2.2.0,pyinotify==0.9.6,PyMySQL==1.0.2,PyNaCl==1.5.0,pyOpenSSL==22.0.0,pyparsing==3.0.7,pyperclip==1.8.2,pyroute2==0.6.6,pyroute2.core==0.6.6,pyroute2.ethtool==0.6.6,pyroute2.ipdb==0.6.6,pyroute2.ipset==0.6.6,pyroute2.ndb==0.6.6,pyroute2.nftables==0.6.6,pyroute2.nslink==0.6.6,pyrsistent==0.18.1,pytest==7.0.1,python-barbicanclient==5.3.0,python-cinderclient==8.3.0,python-dateutil==2.8.2,python-glanceclient==3.6.0,python-ironicclient==4.11.0,python-keystoneclient==4.4.0,python-neutronclient==7.8.0,python-subunit==1.4.0,pytz==2021.3,PyYAML==6.0,repoze.lru==0.7,requests==2.27.1,requests-mock==1.9.3,requestsexceptions==1.4.0,retrying==1.3.3,rfc3986==1.5.0,Routes==2.5.1,simplejson==3.17.6,six==1.16.0,smmap==5.0.0,sortedcontainers==2.4.0,SQLAlchemy==1.4.31,sqlalchemy-migrate==0.13.0,sqlparse==0.4.2,statsd==3.3.0,stestr==3.2.1,stevedore==3.5.0,taskflow==4.6.4,Tempita==0.5.2,tenacity==6.3.1,testresources==2.0.1,testscenarios==0.5.0,testtools==2.5.0,tomli==2.0.1,tooz==2.10.1,types-cryptography==3.3.15,types-enum34==1.1.8,types-ipaddress==1.0.8,types-paramiko==2.8.13,typing_extensions==4.1.1,urllib3==1.26.8,vine==5.0.0,voluptuous==0.12.2,warlock==1.3.3,wcwidth==0.2.5,WebOb==1.8.7,websockify==0.10.0,wrapt==1.13.3,wsgi-intercept==1.9.3,yappi==1.3.3
functional-py39 run-test-pre: PYTHONHASHSEED='1741180912'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
2022-03-15 18:59:01.657 543950 INFO oslo_service.periodic_task [req-6a47e129-2f99-473f-814a-ba07ccf5b98f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:01.687 543948 INFO oslo_service.periodic_task [req-4e25d703-b74b-4ff6-8a90-818e75c66972 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:01.713 543982 INFO oslo_service.periodic_task [req-fa39335f-326a-45d7-8d84-19c9cdcbf604 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:01.783 543968 INFO oslo_service.periodic_task [req-38d9572e-2759-416f-8630-514175cd507d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:01.786 543956 INFO oslo_service.periodic_task [req-1d10881e-0929-4f8a-b2c1-a489a3c020d6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:01.788 543972 INFO oslo_service.periodic_task [req-fb5d6684-8576-498d-90f1-353ab7ea168b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:01.819 543964 INFO oslo_service.periodic_task [req-10da3a9b-72fa-454c-8d99-35b4f1325b81 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:01.831 543946 INFO oslo_service.periodic_task [req-8e305210-ed76-4a07-aaac-17107c905356 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:01.835 543970 INFO oslo_service.periodic_task [req-f6cb94d8-3519-4b15-ab75-9baa77fd98a7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:01.857 543940 INFO oslo_service.periodic_task [req-01651da9-e621-42f3-b9f7-71a99ae4c1fa - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:01.873 543960 INFO oslo_service.periodic_task [req-ab6f1405-aea0-4d1b-b8b0-fc48f0f1a53e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:01.892 543994 INFO oslo_service.periodic_task [req-7b733cd5-4205-434f-a1ab-a90028ad5010 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:01.921 543990 INFO oslo_service.periodic_task [req-7d66e67e-9cb6-4cdd-a1cd-b4ae57734dd2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:01.932 543976 INFO oslo_service.periodic_task [req-304a2c92-32df-4a0f-9065-55190dd0ef86 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:01.936 543974 INFO oslo_service.periodic_task [req-d66e9a0f-1a40-4065-b288-c2ecb513481a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:01.944 543962 INFO oslo_service.periodic_task [req-3055bdd9-3d59-4692-b7f4-d328543a2e9b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:01.945 543996 INFO oslo_service.periodic_task [req-18ef5e65-9a62-478f-8b82-81dda447b291 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:01.956 544002 INFO oslo_service.periodic_task [req-60818434-cf65-4250-8d7f-9fdce200e80d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:01.967 543988 INFO oslo_service.periodic_task [req-c86abb1a-f4c8-470e-893e-d3dc2a43cd1c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:01.978 544024 INFO oslo_service.periodic_task [req-6c7e8d8f-5b56-49da-a507-2232f1d8f9c2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:01.982 544016 INFO oslo_service.periodic_task [req-0cd1d851-8ff0-44d5-b952-60a79286a0a8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:01.986 543984 INFO oslo_service.periodic_task [req-7d3cabc2-3c33-4de5-96dd-e95d0547a587 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:01.997 543992 INFO oslo_service.periodic_task [req-15207c82-8c9a-48a0-9d5d-870de606e4c9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.002 544010 INFO oslo_service.periodic_task [req-36ac002e-04b9-4976-a72c-e03ea02986d4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.008 544026 INFO oslo_service.periodic_task [req-c8997b88-3532-406a-a5ca-edda242e07bb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.020 544051 INFO oslo_service.periodic_task [req-2e1c8f16-4c0d-4e7b-acbe-02406c33dd15 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.024 544000 INFO oslo_service.periodic_task [req-2ed8a4c6-a928-4a10-94bf-85e7f06cc1cf - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.024 543980 INFO oslo_service.periodic_task [req-fadf6cf4-711e-4f31-856d-46951588efb7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.036 544028 INFO oslo_service.periodic_task [req-7ffdc9b6-d403-4288-b9a9-c2c15961c6a5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.059 544044 INFO oslo_service.periodic_task [req-b208a310-7b5b-4568-97a5-78d20ad9904e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.059 544014 INFO oslo_service.periodic_task [req-025470a9-2949-4cf7-a6e3-4b64e45fb21d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.085 543952 INFO oslo_service.periodic_task [req-fa926f09-6b03-4b4d-8fff-ed5b4499fca2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.086 543998 INFO oslo_service.periodic_task [req-81696a9a-89c2-4d16-a810-f9df843e40ba - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.099 543966 INFO oslo_service.periodic_task [req-d074e269-995d-45b6-b4ef-e51c7c122116 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.106 544043 INFO oslo_service.periodic_task [req-b6a7a1d0-cfd0-4ce5-ad61-f2d9c4dd9ab3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.115 544032 INFO oslo_service.periodic_task [req-33c876c7-874e-4b89-b7ec-fa7adef8d9e8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.119 543954 INFO oslo_service.periodic_task [req-3379f17c-65c4-45c4-9f4c-01d0be3ee4ff - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.116 544040 INFO oslo_service.periodic_task [req-d0f93ac4-44cb-4f13-91d3-9e426cd92e23 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.131 543942 INFO oslo_service.periodic_task [req-c939dac4-523a-4595-b08b-8aee4d57ab2c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.132 544046 INFO oslo_service.periodic_task [req-a1ae8495-2c8f-4d08-b42c-634a0f57fd00 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.135 543958 INFO oslo_service.periodic_task [req-c1b39400-3d0a-4104-a05e-fdbc20cb7caf - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.143 544030 INFO oslo_service.periodic_task [req-baa4beae-8d19-41ae-87d1-df97a02d345d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.147 544038 INFO oslo_service.periodic_task [req-e0bb652a-4e81-49a3-abf8-ced20322d138 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.139 544004 INFO oslo_service.periodic_task [req-65595b7c-53ba-45c8-a968-0e22aee0492e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.150 543978 INFO oslo_service.periodic_task [req-3bac8bdc-4732-4fd7-b608-4c52b822a939 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.151 544036 INFO oslo_service.periodic_task [req-3188666b-e72d-4fcf-83a0-080e5c98ab4a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.162 544049 INFO oslo_service.periodic_task [req-04ec4d11-a827-4776-96a8-692aea2faa52 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.160 544034 INFO oslo_service.periodic_task [req-3cd9ea74-fcf6-472a-b580-572b7e4cb526 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.162 544020 INFO oslo_service.periodic_task [req-e9ef9391-2f53-4d71-a057-cc1c0b31fc36 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.171 543944 INFO oslo_service.periodic_task [req-2b2d7129-a093-476e-975a-4ed09dd823b7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.188 544008 INFO oslo_service.periodic_task [req-ceae6256-f204-47e8-9763-0d16aca4f22a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.172 544012 INFO oslo_service.periodic_task [req-cd0a2f4c-c89f-427b-8dae-2a5f271ab924 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.208 544006 INFO oslo_service.periodic_task [req-bd326d05-7bba-412d-b8ce-462fe758c22c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.225 543986 INFO oslo_service.periodic_task [req-a4c78764-21b0-491e-969e-a29d7be96112 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.253 544018 INFO oslo_service.periodic_task [req-8a81cd74-9c16-43a5-888e-c29d47423809 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:02.416 544022 INFO oslo_service.periodic_task [req-d769648e-df26-491f-9547-56be846def56 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
{13} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [1.632139s] ... ok
{2} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.645332s] ... ok
{4} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.353811s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.389044s] ... ok
{8} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.341233s] ... ok
{10} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.409634s] ... ok
{12} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.507214s] ... ok
{6} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.374605s] ... ok
{7} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.415170s] ... ok
{16} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [2.911740s] ... ok
{9} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.551091s] ... ok
{3} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.498318s] ... ok
{28} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.686479s] ... ok
{31} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.862828s] ... ok
{29} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.818454s] ... ok
{38} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.033456s] ... ok
{35} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [4.099483s] ... ok
{32} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [3.975354s] ... ok
{14} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [4.382472s] ... ok
{17} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [4.496247s] ... ok
{15} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [4.661924s] ... ok
{13} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [3.077296s] ... ok
{24} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [5.030992s] ... ok
{23} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [4.801889s] ... ok
{43} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [5.090371s] ... ok
{55} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [5.069654s] ... ok
{50} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [4.994163s] ... ok
{52} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.061023s] ... ok
{26} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [5.205564s] ... ok
{42} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.320573s] ... ok
{47} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.193159s] ... ok
{54} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.203436s] ... ok
{44} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.407798s] ... ok
{14} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [1.320354s] ... ok
{20} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.457958s] ... ok
{48} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.411215s] ... ok
{53} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [5.484056s] ... ok
{18} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [5.870681s] ... ok
{34} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [5.743291s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "instances" and FROM element "security_groups". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{39} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.711047s] ... ok
{30} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [5.957110s] ... ok
{25} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [6.141356s] ... ok
{37} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [5.999475s] ... ok
{27} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [6.259399s] ... ok
{21} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.475583s] ... ok
{19} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [6.671581s] ... ok
{41} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [6.528820s] ... ok
{11} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [7.136563s] ... ok
{49} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [7.109041s] ... ok
{51} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [7.223217s] ... ok
{8} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [5.277179s] ... ok
{5} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [5.462291s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/hub.py", line 476, in fire_timers
timer()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/timer.py", line 59, in __call__
cb(*args, **kw)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/greenthread.py", line 221, in main
result = function(*args, **kwargs)
File "/home/ubuntu/nova/nova/utils.py", line 655, in context_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/tests/fixtures/nova.py", line 1661, in test_case_id_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9744, in _live_migration_operation
LOG.error("Live Migration failure: %s", e, instance=instance)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9700, in _live_migration_operation
new_xml_str = libvirt_migrate.get_updated_guest_xml(
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 66, in get_updated_guest_xml
xml_doc = _update_vif_xml(xml_doc, migrate_data, get_vif_config)
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 396, in _update_vif_xml
interface_dev.insert(index + 1, address)
TypeError: Argument 'element' has incorrect type (expected lxml.etree._Element, got NoneType)
{45} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [7.425843s] ... ok
{21} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{46} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [7.474125s] ... ok
{40} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [7.436053s] ... ok
{28} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [4.016048s] ... ok
{38} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [3.646895s] ... ok
{10} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [5.432742s] ... ok
{16} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [5.074774s] ... ok
{12} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [5.448790s] ... ok
{43} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [2.770914s] ... ok
{27} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [1.753266s] ... ok
{33} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [7.698655s] ... ok
{29} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [4.131072s] ... ok
{9} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [5.421719s] ... ok
{22} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [8.274107s] ... ok
{47} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [2.904452s] ... ok
{6} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [5.935107s] ... ok
{44} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [2.972645s] ... ok
{50} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [3.580616s] ... ok
{36} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [8.591883s] ... ok
{18} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.250008s] ... ok
{31} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [5.263985s] ... ok
{1} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [9.038646s] ... ok
{25} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.118791s] ... ok
{4} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [7.231955s] ... ok
{2} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.537376s] ... ok
{12} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.627238s] ... ok
{26} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.204846s] ... ok
{11} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [2.409479s] ... ok
{42} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [4.209217s] ... ok
{0} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.744711s] ... ok
{19} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [2.861604s] ... ok
{32} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [5.568786s] ... ok
{13} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [4.975685s] ... ok
{24} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [4.838089s] ... ok
{55} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [4.910981s] ... ok
{34} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [4.065191s] ... ok
{20} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [4.581350s] ... ok
{52} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [4.944033s] ... ok
{7} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [7.651280s] ... ok
{2} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.825881s] ... ok
{30} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [4.306389s] ... ok
{35} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [6.260356s] ... ok
{1} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [1.204879s] ... ok
{53} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [4.793183s] ... ok
{39} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [4.501076s] ... ok
{11} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [1.014502s] ... ok
{48} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [5.109775s] ... ok
{49} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [3.445004s] ... ok
{3} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.544590s] ... ok
{54} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [5.654901s] ... ok
{37} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [5.125769s] ... ok
{15} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [6.855972s] ... ok
{33} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [3.738789s] ... ok
{23} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.750047s] ... ok
{22} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.561642s] ... ok
{17} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [7.398173s] ... ok
{40} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.242586s] ... ok
{45} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [4.306623s] ... ok
{46} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [4.353532s] ... ok
{51} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [4.797203s] ... ok
{41} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.176434s] ... ok
{36} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [3.421219s] ... ok
{14} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [7.085789s] ... ok
======
Totals
======
Ran: 116 tests in 12.9131 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 551.6507 sec.
==============
Worker Balance
==============
- Worker 0 (1 tests) => 0:00:09.744711
- Worker 1 (2 tests) => 0:00:10.245054
- Worker 2 (3 tests) => 0:00:10.012674
- Worker 3 (2 tests) => 0:00:11.044717
- Worker 4 (2 tests) => 0:00:09.588529
- Worker 5 (2 tests) => 0:00:07.853501
- Worker 6 (2 tests) => 0:00:08.312051
- Worker 7 (2 tests) => 0:00:10.068697
- Worker 8 (2 tests) => 0:00:07.621091
- Worker 9 (2 tests) => 0:00:07.975696
- Worker 10 (2 tests) => 0:00:07.845116
- Worker 11 (3 tests) => 0:00:10.563292
- Worker 12 (3 tests) => 0:00:09.587757
- Worker 13 (3 tests) => 0:00:09.689193
- Worker 14 (3 tests) => 0:00:12.790496
- Worker 15 (2 tests) => 0:00:11.519315
- Worker 16 (2 tests) => 0:00:07.988376
- Worker 17 (2 tests) => 0:00:11.895071
- Worker 18 (2 tests) => 0:00:09.122508
- Worker 19 (2 tests) => 0:00:09.534642
- Worker 20 (2 tests) => 0:00:10.040808
- Worker 21 (2 tests) => 0:00:07.888015
- Worker 22 (2 tests) => 0:00:11.837734
- Worker 23 (2 tests) => 0:00:11.552548
- Worker 24 (2 tests) => 0:00:09.870481
- Worker 25 (2 tests) => 0:00:09.262234
- Worker 26 (2 tests) => 0:00:09.411926
- Worker 27 (2 tests) => 0:00:08.014305
- Worker 28 (2 tests) => 0:00:07.704036
- Worker 29 (2 tests) => 0:00:07.950871
- Worker 30 (2 tests) => 0:00:10.265384
- Worker 31 (2 tests) => 0:00:09.128069
- Worker 32 (2 tests) => 0:00:09.545133
- Worker 33 (2 tests) => 0:00:11.439421
- Worker 34 (2 tests) => 0:00:09.810032
- Worker 35 (2 tests) => 0:00:10.361650
- Worker 36 (2 tests) => 0:00:12.014287
- Worker 37 (2 tests) => 0:00:11.126269
- Worker 38 (2 tests) => 0:00:07.681380
- Worker 39 (2 tests) => 0:00:10.214067
- Worker 40 (2 tests) => 0:00:11.680194
- Worker 41 (2 tests) => 0:00:11.706386
- Worker 42 (2 tests) => 0:00:09.532023
- Worker 43 (2 tests) => 0:00:07.862556
- Worker 44 (2 tests) => 0:00:08.381581
- Worker 45 (2 tests) => 0:00:11.734197
- Worker 46 (2 tests) => 0:00:11.830064
- Worker 47 (2 tests) => 0:00:08.099067
- Worker 48 (2 tests) => 0:00:10.523134
- Worker 49 (2 tests) => 0:00:10.556129
- Worker 50 (2 tests) => 0:00:08.576695
- Worker 51 (2 tests) => 0:00:12.022031
- Worker 52 (2 tests) => 0:00:10.007741
- Worker 53 (2 tests) => 0:00:10.279044
- Worker 54 (2 tests) => 0:00:10.859868
- Worker 55 (2 tests) => 0:00:09.982440
functional-py39 run-test: commands[1] | stestr slowest
Test id Runtime (s)
------------------------------------------------------------------------------------------------------------------------------------------------------ -----------
nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid 9.745
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 9.039
nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change 8.592
nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate 8.274
nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute 7.699
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False 7.651
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.545
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False 7.537
nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate 7.474
nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 7.436
__________________________________________________________________________________ summary __________________________________________________________________________________
functional-py39: commands succeeded
congratulations :)
Tox run 11
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/easy_install.py:160: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
functional-py39 develop-inst-noop: /home/ubuntu/nova
functional-py39 installed: alembic==1.7.6,amqp==5.0.9,appdirs==1.4.4,attrs==21.4.0,automaton==2.5.0,autopage==0.5.0,bandit==1.7.4,bcrypt==3.2.0,cachetools==5.0.0,castellan==3.10.1,certifi==2021.10.8,cffi==1.15.0,charset-normalizer==2.0.12,cliff==3.10.1,cmd2==2.4.0,colorama==0.4.4,coverage==6.3.2,cryptography==36.0.1,cursive==0.2.2,ddt==1.4.4,debtcollector==2.4.0,decorator==5.1.1,dnspython==2.1.0,dogpile.cache==1.1.5,eventlet==0.33.0,extras==1.0.0,fasteners==0.17.3,fixtures==3.0.0,flake8==3.8.4,future==0.18.2,futurist==2.4.0,gabbi==2.4.0,gitdb==4.0.9,GitPython==3.1.27,greenlet==1.1.2,hacking==3.1.0,idna==3.3,iniconfig==1.1.1,iso8601==1.0.2,Jinja2==3.0.3,jmespath==0.10.0,jsonpatch==1.32,jsonpath-rw==1.4.0,jsonpath-rw-ext==1.2.2,jsonpointer==2.2,jsonschema==3.2.0,keystoneauth1==4.5.0,keystonemiddleware==9.4.0,kombu==5.2.4,lxml==4.8.0,Mako==1.1.6,MarkupSafe==2.1.1,mccabe==0.6.1,microversion-parse==1.0.1,mock==4.0.3,msgpack==1.0.3,munch==2.5.0,mypy==0.931,mypy-extensions==0.4.3,netaddr==0.8.0,netifaces==0.11.0,networkx==2.7.1,-e git+https://review.opendev.org/openstack/nova@d43538712c034023bdb3e25cd7adfdee409ed596#egg=nova,numpy==1.22.3,openstack-placement==6.0.0,openstacksdk==0.61.0,os-brick==5.2.0,os-client-config==2.1.0,os-resource-classes==1.1.0,os-service-types==1.7.0,os-traits==2.7.0,os-vif==2.7.1,os-win==5.6.0,osc-lib==2.5.0,oslo.cache==2.10.1,oslo.concurrency==4.5.0,oslo.config==8.8.0,oslo.context==4.1.0,oslo.db==11.2.0,oslo.i18n==5.1.0,oslo.log==4.7.0,oslo.messaging==12.13.0,oslo.metrics==0.4.0,oslo.middleware==4.5.1,oslo.policy==3.11.0,oslo.privsep==2.7.0,oslo.reports==2.3.0,oslo.rootwrap==6.3.1,oslo.serialization==4.3.0,oslo.service==2.8.0,oslo.upgradecheck==1.5.0,oslo.utils==4.12.2,oslo.versionedobjects==2.6.0,oslotest==4.5.0,osprofiler==3.4.2,ovs==2.16.0,ovsdbapp==1.15.1,packaging==21.3,paramiko==2.8.1,Paste==3.5.0,PasteDeploy==2.1.1,pbr==5.8.1,pluggy==1.0.0,ply==3.11,prettytable==3.2.0,prometheus-client==0.13.1,psutil==5.9.0,psycopg2-binary==2.9.3,py==1.11.0,pycadf==3.1.1,pycodestyle==2.6.0,pycparser==2.21,pydot==1.4.2,pyflakes==2.2.0,pyinotify==0.9.6,PyMySQL==1.0.2,PyNaCl==1.5.0,pyOpenSSL==22.0.0,pyparsing==3.0.7,pyperclip==1.8.2,pyroute2==0.6.6,pyroute2.core==0.6.6,pyroute2.ethtool==0.6.6,pyroute2.ipdb==0.6.6,pyroute2.ipset==0.6.6,pyroute2.ndb==0.6.6,pyroute2.nftables==0.6.6,pyroute2.nslink==0.6.6,pyrsistent==0.18.1,pytest==7.0.1,python-barbicanclient==5.3.0,python-cinderclient==8.3.0,python-dateutil==2.8.2,python-glanceclient==3.6.0,python-ironicclient==4.11.0,python-keystoneclient==4.4.0,python-neutronclient==7.8.0,python-subunit==1.4.0,pytz==2021.3,PyYAML==6.0,repoze.lru==0.7,requests==2.27.1,requests-mock==1.9.3,requestsexceptions==1.4.0,retrying==1.3.3,rfc3986==1.5.0,Routes==2.5.1,simplejson==3.17.6,six==1.16.0,smmap==5.0.0,sortedcontainers==2.4.0,SQLAlchemy==1.4.31,sqlalchemy-migrate==0.13.0,sqlparse==0.4.2,statsd==3.3.0,stestr==3.2.1,stevedore==3.5.0,taskflow==4.6.4,Tempita==0.5.2,tenacity==6.3.1,testresources==2.0.1,testscenarios==0.5.0,testtools==2.5.0,tomli==2.0.1,tooz==2.10.1,types-cryptography==3.3.15,types-enum34==1.1.8,types-ipaddress==1.0.8,types-paramiko==2.8.13,typing_extensions==4.1.1,urllib3==1.26.8,vine==5.0.0,voluptuous==0.12.2,warlock==1.3.3,wcwidth==0.2.5,WebOb==1.8.7,websockify==0.10.0,wrapt==1.13.3,wsgi-intercept==1.9.3,yappi==1.3.3
functional-py39 run-test-pre: PYTHONHASHSEED='1341560760'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
2022-03-15 18:59:34.091 544683 INFO oslo_service.periodic_task [req-7d384b04-9a9d-4923-968f-dd9a80d95c32 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.096 544681 INFO oslo_service.periodic_task [req-c2e022b7-18e1-4def-b9bc-9c45a69ea3ef - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.119 544685 INFO oslo_service.periodic_task [req-d58386c1-d121-475b-9ec3-19ef449119a4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.264 544673 INFO oslo_service.periodic_task [req-0c2f7fc1-d964-4df1-b226-0794e9c0766a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.300 544729 INFO oslo_service.periodic_task [req-cb368ab1-171c-41a9-966e-7724f0a76849 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.303 544693 INFO oslo_service.periodic_task [req-aabe886e-3d71-4890-8e7f-f4da3a13f315 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.309 544677 INFO oslo_service.periodic_task [req-e5ddb0f0-345c-4ea4-812a-1c64b8a7d3f2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.318 544691 INFO oslo_service.periodic_task [req-10e3d76b-265c-4b02-94a8-91869f9c340f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.334 544679 INFO oslo_service.periodic_task [req-a613711a-48f5-4e10-bc0a-818ca8c02060 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.339 544687 INFO oslo_service.periodic_task [req-957138b0-1ac2-4277-98e8-99167b325b03 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.344 544695 INFO oslo_service.periodic_task [req-5bc72578-9c6d-4e9a-8069-0028168acfd5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.358 544699 INFO oslo_service.periodic_task [req-71025bd3-b8cd-4d27-8250-bf687b50d603 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.363 544739 INFO oslo_service.periodic_task [req-937fce15-0da3-47e6-bd17-3132477e8923 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.374 544675 INFO oslo_service.periodic_task [req-c93dafbe-10a0-444f-b267-ffd8002f0093 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.378 544737 INFO oslo_service.periodic_task [req-9e4be743-280d-45b3-aa11-2bba27c6736e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.391 544705 INFO oslo_service.periodic_task [req-07698d15-5e21-45a9-9f01-d4a59079ea3d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.406 544713 INFO oslo_service.periodic_task [req-9455c94d-01c6-445a-800d-e4d83bd6aed2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.425 544717 INFO oslo_service.periodic_task [req-c7892cce-483c-45e8-a4ea-1cf6dd8b388b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.428 544755 INFO oslo_service.periodic_task [req-eec75bfc-ce47-4a08-9675-b8d25926cde7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.441 544709 INFO oslo_service.periodic_task [req-1f4d69cf-4c94-41bd-9cb6-6c684ec5d522 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.448 544697 INFO oslo_service.periodic_task [req-6910dfb7-1656-41ac-a8bf-80432cced856 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.483 544721 INFO oslo_service.periodic_task [req-00fcdea1-dabc-4e15-95bb-d0c79096ee43 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.483 544723 INFO oslo_service.periodic_task [req-17ac3992-7398-47e4-be0d-2bde1553ec8a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.489 544719 INFO oslo_service.periodic_task [req-296386fd-a0cd-4131-a7a7-da160b3f3c30 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.496 544707 INFO oslo_service.periodic_task [req-2ead94d8-4c96-4443-aace-f3eb68f03114 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.496 544711 INFO oslo_service.periodic_task [req-bc170807-8910-4a04-bba1-a778dc1af50e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.505 544735 INFO oslo_service.periodic_task [req-63e9f179-633d-4f8a-b2b6-9231c75904ec - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.540 544749 INFO oslo_service.periodic_task [req-6f88f467-f2ac-4b7c-9cb2-145072ba3b54 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.542 544701 INFO oslo_service.periodic_task [req-ad6ad67e-2261-493a-aca5-391633bf3d2a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.544 544759 INFO oslo_service.periodic_task [req-796fa12a-1e6c-497c-ae26-a6c13c93c07e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.548 544703 INFO oslo_service.periodic_task [req-c9b0a30f-1af5-4f32-b6e1-cddf1050ef94 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.551 544751 INFO oslo_service.periodic_task [req-7a920783-4880-4aac-8545-45a77045ec21 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.555 544745 INFO oslo_service.periodic_task [req-2d856589-1ddd-4ad0-96fd-6ec3b9db8057 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.574 544741 INFO oslo_service.periodic_task [req-57704e3c-087a-435d-82a4-1a4600aacbc3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.607 544781 INFO oslo_service.periodic_task [req-da659a77-744e-48a8-a623-4de792d72f13 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.610 544767 INFO oslo_service.periodic_task [req-653e5107-416f-425c-8247-729aa60d075a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.613 544731 INFO oslo_service.periodic_task [req-a71d0329-3d64-4e04-b282-3c883aa347d2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.618 544763 INFO oslo_service.periodic_task [req-8120533f-f14a-4512-8899-f6f625f6b5a3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.612 544689 INFO oslo_service.periodic_task [req-97abef46-979d-4095-ba97-aec41ac1a68c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.625 544757 INFO oslo_service.periodic_task [req-54e89955-1e3c-4661-94c8-0a5c300300f6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.633 544765 INFO oslo_service.periodic_task [req-f1253ea0-8bd4-423d-a3ec-33cbf9ba3e53 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.661 544747 INFO oslo_service.periodic_task [req-f9012e43-3c48-4d2a-b4ef-3bb1cc330e08 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.676 544715 INFO oslo_service.periodic_task [req-b9eb67ef-1560-41c4-99eb-f3d5bf19d5f3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.698 544727 INFO oslo_service.periodic_task [req-9f05dd01-8d6f-458b-aded-800e6f1ef00d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.703 544743 INFO oslo_service.periodic_task [req-11d7c5af-d724-43e8-918a-225d8ce0d62c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.706 544777 INFO oslo_service.periodic_task [req-b5345677-c86f-4eb0-a6a0-8fec9a30e559 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.708 544771 INFO oslo_service.periodic_task [req-be2ffbc2-999e-4b90-a352-1bbbf548afbd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.716 544753 INFO oslo_service.periodic_task [req-fda55c16-7e57-4069-a8f0-2b4e89e2f79f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.728 544784 INFO oslo_service.periodic_task [req-9cde784d-7218-468d-b411-cafc0e441256 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.730 544773 INFO oslo_service.periodic_task [req-606862f5-3957-4620-a47e-65ac8653bcae - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.736 544725 INFO oslo_service.periodic_task [req-4a9061f0-4cdb-4a06-bfdb-48a0b318891b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.763 544775 INFO oslo_service.periodic_task [req-da8d1c66-7b02-4e1d-b1b4-6f102e34fe54 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.769 544733 INFO oslo_service.periodic_task [req-8f275853-fa78-448e-bbd1-6117f4eca71d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.781 544779 INFO oslo_service.periodic_task [req-84c4c294-a3f2-4043-b156-b4a4429eb88b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.822 544761 INFO oslo_service.periodic_task [req-6492b582-87a1-4479-bd4b-485ec43c1b91 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 18:59:34.840 544769 INFO oslo_service.periodic_task [req-9133cf72-b760-4ae8-9ce0-db43c7c41070 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
{2} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [1.622875s] ... ok
{3} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.649737s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.378575s] ... ok
{6} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.367519s] ... ok
{10} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.420752s] ... ok
{13} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.419917s] ... ok
{11} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.470689s] ... ok
{7} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.469744s] ... ok
{12} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.407973s] ... ok
{8} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.365024s] ... ok
{4} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{17} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [2.907952s] ... ok
{28} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.715628s] ... ok
{32} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [3.791903s] ... ok
{31} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.981832s] ... ok
{34} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.094181s] ... ok
{30} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.916099s] ... ok
{36} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [4.160920s] ... ok
{18} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [4.412914s] ... ok
{16} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [4.664202s] ... ok
{54} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [4.877546s] ... ok
{20} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [5.149008s] ... ok
{55} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [4.857042s] ... ok
{39} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.074763s] ... ok
{45} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [4.997493s] ... ok
{22} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [5.274294s] ... ok
{48} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [4.857607s] ... ok
{46} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.130495s] ... ok
{41} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.346546s] ... ok
{50} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [5.108551s] ... ok
{52} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [5.169760s] ... ok
{44} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [5.096604s] ... ok
{40} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.358621s] ... ok
{27} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.450114s] ... ok
{53} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.340000s] ... ok
{24} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [5.892250s] ... ok
{33} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [6.142945s] ... ok
{35} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.825135s] ... ok
{25} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [6.091178s] ... ok
{47} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [5.966133s] ... ok
{26} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [5.851323s] ... ok
{29} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [6.001741s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "instances" and FROM element "security_groups". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{37} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [6.062562s] ... ok
{23} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [6.284470s] ... ok
{15} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [6.607276s] ... ok
{21} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.756748s] ... ok
{14} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [6.936109s] ... ok
{51} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [6.754576s] ... ok
{49} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [6.887352s] ... ok
{9} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [7.322195s] ... ok
{13} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [4.899474s] ... ok
{19} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [7.335398s] ... ok
{42} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [7.227703s] ... ok
{38} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [7.345044s] ... ok
{43} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [7.349080s] ... ok
{24} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [1.582846s] ... ok
{10} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [5.275978s] ... ok
{8} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [5.213695s] ... ok
{28} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [4.282325s] ... ok
{30} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [3.640341s] ... ok
{45} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [2.720735s] ... ok
{2} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [6.647868s] ... ok
{44} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [2.750982s] ... ok
{12} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [6.383517s] ... ok
{3} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [7.394938s] ... ok
{1} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [9.158218s] ... ok
{39} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [3.970560s] ... ok
{41} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [3.880435s] ... ok
{31} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [5.256994s] ... ok
{26} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [3.235532s] ... ok
{20} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.291973s] ... ok
{4} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [6.472092s] ... ok
{6} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.470667s] ... ok
{14} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [2.517732s] ... ok
{36} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [5.288878s] ... ok
{34} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [5.403102s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/hub.py", line 476, in fire_timers
timer()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/timer.py", line 59, in __call__
cb(*args, **kw)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/greenthread.py", line 221, in main
result = function(*args, **kwargs)
File "/home/ubuntu/nova/nova/utils.py", line 655, in context_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/tests/fixtures/nova.py", line 1661, in test_case_id_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9744, in _live_migration_operation
LOG.error("Live Migration failure: %s", e, instance=instance)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9700, in _live_migration_operation
new_xml_str = libvirt_migrate.get_updated_guest_xml(
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 66, in get_updated_guest_xml
xml_doc = _update_vif_xml(xml_doc, migrate_data, get_vif_config)
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 396, in _update_vif_xml
interface_dev.insert(index + 1, address)
TypeError: Argument 'element' has incorrect type (expected lxml.etree._Element, got NoneType)
{0} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.811390s] ... ok
{23} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [3.387480s] ... ok
{17} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [6.762427s] ... ok
{9} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [2.557111s] ... ok
{31} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.481012s] ... ok
{25} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.690352s] ... ok
{32} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [6.137182s] ... ok
{46} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [4.552769s] ... ok
{54} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [5.004805s] ... ok
{5} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [8.059543s] ... ok
{52} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [4.663887s] ... ok
{33} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [4.045168s] ... ok
{40} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.521959s] ... ok
{1} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.092454s] ... ok
{15} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.580354s] ... ok
{19} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [2.961415s] ... ok
{11} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [8.020861s] ... ok
{7} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [8.034355s] ... ok
{29} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [4.227619s] ... ok
{21} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.431194s] ... ok
{55} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [5.318943s] ... ok
{51} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [3.432882s] ... ok
{43} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [3.065970s] ... ok
{35} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [4.513970s] ... ok
{34} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [1.113842s] ... ok
{33} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.630400s] ... ok
{48} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [5.650981s] ... ok
{50} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [5.668171s] ... ok
{53} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [5.511457s] ... ok
{29} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [0.872854s] ... ok
{16} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [6.777193s] ... ok
{18} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.994613s] ... ok
{22} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [6.145576s] ... ok
{4} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [2.041403s] ... ok
{38} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.097603s] ... ok
{42} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [4.199326s] ... ok
{37} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [5.604095s] ... ok
{49} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [4.742626s] ... ok
{27} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [6.457131s] ... ok
{47} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [6.223620s] ... ok
======
Totals
======
Ran: 116 tests in 12.7257 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 555.0545 sec.
==============
Worker Balance
==============
- Worker 0 (1 tests) => 0:00:09.811390
- Worker 1 (2 tests) => 0:00:10.251876
- Worker 2 (2 tests) => 0:00:08.272906
- Worker 3 (2 tests) => 0:00:09.047473
- Worker 4 (3 tests) => 0:00:11.802039
- Worker 5 (2 tests) => 0:00:10.440875
- Worker 6 (2 tests) => 0:00:09.840994
- Worker 7 (2 tests) => 0:00:10.506721
- Worker 8 (2 tests) => 0:00:07.580478
- Worker 9 (2 tests) => 0:00:09.880515
- Worker 10 (2 tests) => 0:00:07.699647
- Worker 11 (2 tests) => 0:00:10.493771
- Worker 12 (2 tests) => 0:00:08.794308
- Worker 13 (2 tests) => 0:00:07.322254
- Worker 14 (2 tests) => 0:00:09.455092
- Worker 15 (2 tests) => 0:00:10.189727
- Worker 16 (2 tests) => 0:00:11.443328
- Worker 17 (2 tests) => 0:00:09.671992
- Worker 18 (2 tests) => 0:00:11.408982
- Worker 19 (2 tests) => 0:00:10.298177
- Worker 20 (2 tests) => 0:00:09.442321
- Worker 21 (2 tests) => 0:00:10.189995
- Worker 22 (2 tests) => 0:00:11.421618
- Worker 23 (2 tests) => 0:00:09.673492
- Worker 24 (2 tests) => 0:00:07.476163
- Worker 25 (2 tests) => 0:00:09.782984
- Worker 26 (2 tests) => 0:00:09.088067
- Worker 27 (2 tests) => 0:00:11.908126
- Worker 28 (2 tests) => 0:00:07.999631
- Worker 29 (3 tests) => 0:00:11.104557
- Worker 30 (2 tests) => 0:00:07.557290
- Worker 31 (3 tests) => 0:00:09.722920
- Worker 32 (2 tests) => 0:00:09.930457
- Worker 33 (3 tests) => 0:00:10.821113
- Worker 34 (3 tests) => 0:00:10.613462
- Worker 35 (2 tests) => 0:00:10.341143
- Worker 36 (2 tests) => 0:00:09.450922
- Worker 37 (2 tests) => 0:00:11.668020
- Worker 38 (2 tests) => 0:00:11.444182
- Worker 39 (2 tests) => 0:00:09.047354
- Worker 40 (2 tests) => 0:00:09.883836
- Worker 41 (2 tests) => 0:00:09.229184
- Worker 42 (2 tests) => 0:00:11.428075
- Worker 43 (2 tests) => 0:00:10.417500
- Worker 44 (2 tests) => 0:00:07.848950
- Worker 45 (2 tests) => 0:00:07.719828
- Worker 46 (2 tests) => 0:00:09.685634
- Worker 47 (2 tests) => 0:00:12.191657
- Worker 48 (2 tests) => 0:00:10.509713
- Worker 49 (2 tests) => 0:00:11.632042
- Worker 50 (2 tests) => 0:00:10.778234
- Worker 51 (2 tests) => 0:00:10.189678
- Worker 52 (2 tests) => 0:00:09.835436
- Worker 53 (2 tests) => 0:00:10.854481
- Worker 54 (2 tests) => 0:00:09.883369
- Worker 55 (2 tests) => 0:00:10.177621
functional-py39 run-test: commands[1] | stestr slowest
Test id Runtime (s)
------------------------------------------------------------------------------------------------------------------------------------------ -----------
nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid 9.811
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 9.158
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False 8.060
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False 8.034
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True 8.021
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.471
nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate 7.395
nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists 7.349
nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True 7.345
nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim 7.335
__________________________________________________________________________________ summary __________________________________________________________________________________
functional-py39: commands succeeded
congratulations :)
Tox run 12
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/easy_install.py:160: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
functional-py39 develop-inst-noop: /home/ubuntu/nova
functional-py39 installed: alembic==1.7.6,amqp==5.0.9,appdirs==1.4.4,attrs==21.4.0,automaton==2.5.0,autopage==0.5.0,bandit==1.7.4,bcrypt==3.2.0,cachetools==5.0.0,castellan==3.10.1,certifi==2021.10.8,cffi==1.15.0,charset-normalizer==2.0.12,cliff==3.10.1,cmd2==2.4.0,colorama==0.4.4,coverage==6.3.2,cryptography==36.0.1,cursive==0.2.2,ddt==1.4.4,debtcollector==2.4.0,decorator==5.1.1,dnspython==2.1.0,dogpile.cache==1.1.5,eventlet==0.33.0,extras==1.0.0,fasteners==0.17.3,fixtures==3.0.0,flake8==3.8.4,future==0.18.2,futurist==2.4.0,gabbi==2.4.0,gitdb==4.0.9,GitPython==3.1.27,greenlet==1.1.2,hacking==3.1.0,idna==3.3,iniconfig==1.1.1,iso8601==1.0.2,Jinja2==3.0.3,jmespath==0.10.0,jsonpatch==1.32,jsonpath-rw==1.4.0,jsonpath-rw-ext==1.2.2,jsonpointer==2.2,jsonschema==3.2.0,keystoneauth1==4.5.0,keystonemiddleware==9.4.0,kombu==5.2.4,lxml==4.8.0,Mako==1.1.6,MarkupSafe==2.1.1,mccabe==0.6.1,microversion-parse==1.0.1,mock==4.0.3,msgpack==1.0.3,munch==2.5.0,mypy==0.931,mypy-extensions==0.4.3,netaddr==0.8.0,netifaces==0.11.0,networkx==2.7.1,-e git+https://review.opendev.org/openstack/nova@d43538712c034023bdb3e25cd7adfdee409ed596#egg=nova,numpy==1.22.3,openstack-placement==6.0.0,openstacksdk==0.61.0,os-brick==5.2.0,os-client-config==2.1.0,os-resource-classes==1.1.0,os-service-types==1.7.0,os-traits==2.7.0,os-vif==2.7.1,os-win==5.6.0,osc-lib==2.5.0,oslo.cache==2.10.1,oslo.concurrency==4.5.0,oslo.config==8.8.0,oslo.context==4.1.0,oslo.db==11.2.0,oslo.i18n==5.1.0,oslo.log==4.7.0,oslo.messaging==12.13.0,oslo.metrics==0.4.0,oslo.middleware==4.5.1,oslo.policy==3.11.0,oslo.privsep==2.7.0,oslo.reports==2.3.0,oslo.rootwrap==6.3.1,oslo.serialization==4.3.0,oslo.service==2.8.0,oslo.upgradecheck==1.5.0,oslo.utils==4.12.2,oslo.versionedobjects==2.6.0,oslotest==4.5.0,osprofiler==3.4.2,ovs==2.16.0,ovsdbapp==1.15.1,packaging==21.3,paramiko==2.8.1,Paste==3.5.0,PasteDeploy==2.1.1,pbr==5.8.1,pluggy==1.0.0,ply==3.11,prettytable==3.2.0,prometheus-client==0.13.1,psutil==5.9.0,psycopg2-binary==2.9.3,py==1.11.0,pycadf==3.1.1,pycodestyle==2.6.0,pycparser==2.21,pydot==1.4.2,pyflakes==2.2.0,pyinotify==0.9.6,PyMySQL==1.0.2,PyNaCl==1.5.0,pyOpenSSL==22.0.0,pyparsing==3.0.7,pyperclip==1.8.2,pyroute2==0.6.6,pyroute2.core==0.6.6,pyroute2.ethtool==0.6.6,pyroute2.ipdb==0.6.6,pyroute2.ipset==0.6.6,pyroute2.ndb==0.6.6,pyroute2.nftables==0.6.6,pyroute2.nslink==0.6.6,pyrsistent==0.18.1,pytest==7.0.1,python-barbicanclient==5.3.0,python-cinderclient==8.3.0,python-dateutil==2.8.2,python-glanceclient==3.6.0,python-ironicclient==4.11.0,python-keystoneclient==4.4.0,python-neutronclient==7.8.0,python-subunit==1.4.0,pytz==2021.3,PyYAML==6.0,repoze.lru==0.7,requests==2.27.1,requests-mock==1.9.3,requestsexceptions==1.4.0,retrying==1.3.3,rfc3986==1.5.0,Routes==2.5.1,simplejson==3.17.6,six==1.16.0,smmap==5.0.0,sortedcontainers==2.4.0,SQLAlchemy==1.4.31,sqlalchemy-migrate==0.13.0,sqlparse==0.4.2,statsd==3.3.0,stestr==3.2.1,stevedore==3.5.0,taskflow==4.6.4,Tempita==0.5.2,tenacity==6.3.1,testresources==2.0.1,testscenarios==0.5.0,testtools==2.5.0,tomli==2.0.1,tooz==2.10.1,types-cryptography==3.3.15,types-enum34==1.1.8,types-ipaddress==1.0.8,types-paramiko==2.8.13,typing_extensions==4.1.1,urllib3==1.26.8,vine==5.0.0,voluptuous==0.12.2,warlock==1.3.3,wcwidth==0.2.5,WebOb==1.8.7,websockify==0.10.0,wrapt==1.13.3,wsgi-intercept==1.9.3,yappi==1.3.3
functional-py39 run-test-pre: PYTHONHASHSEED='1554004596'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
2022-03-15 19:00:06.081 545387 INFO oslo_service.periodic_task [req-704cd6de-0d48-4217-b2da-a9029a39fa79 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.094 545379 INFO oslo_service.periodic_task [req-14cfff23-90c7-40ac-b156-6ddf2dbfab13 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.097 545385 INFO oslo_service.periodic_task [req-c41afd75-273b-4e9b-b641-751617ff5e9b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.097 545375 INFO oslo_service.periodic_task [req-e678d905-3e19-43d0-95d7-470208533d13 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.112 545373 INFO oslo_service.periodic_task [req-177e5954-0997-4427-8d3e-79bd5bdc277b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.148 545397 INFO oslo_service.periodic_task [req-9aa39c8d-187c-45ac-89ea-073635b02ccf - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.165 545393 INFO oslo_service.periodic_task [req-37b990a7-0686-4d59-8417-a605301b080a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.202 545381 INFO oslo_service.periodic_task [req-f1d8e0fa-81e6-4ae9-9313-8c9a5d98b54d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.245 545439 INFO oslo_service.periodic_task [req-643698e2-510d-4662-abe6-0c88cde9a2f8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.267 545429 INFO oslo_service.periodic_task [req-1941693b-8930-46eb-8bec-bcdeddf442cd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.269 545435 INFO oslo_service.periodic_task [req-184cfaff-d551-4c54-872b-f8da713994c0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.273 545443 INFO oslo_service.periodic_task [req-37b0d2d5-5aa0-4273-88be-174d28358089 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.277 545377 INFO oslo_service.periodic_task [req-91e5d907-8320-452f-9f19-cd24e06fc6aa - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.284 545405 INFO oslo_service.periodic_task [req-a1afbf75-e7bb-4e1c-b788-935dab482107 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.289 545401 INFO oslo_service.periodic_task [req-4435faa7-c16f-4bea-a282-22b1886b4b13 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.295 545389 INFO oslo_service.periodic_task [req-2685339c-8a50-48fe-ba90-df555bef418e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.298 545413 INFO oslo_service.periodic_task [req-5cfae190-feec-43af-a40e-d988206f84b5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.303 545441 INFO oslo_service.periodic_task [req-28387f2d-6bd4-4e2d-8040-c005e2d4d255 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.318 545431 INFO oslo_service.periodic_task [req-9c4d7de6-6d36-4a17-9f6a-61e1b895302b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.322 545395 INFO oslo_service.periodic_task [req-921c38e5-de17-4df4-8aab-03e8e3464f38 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.324 545427 INFO oslo_service.periodic_task [req-aa164b4c-538f-41bf-8534-cc49c69b8cdd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.356 545415 INFO oslo_service.periodic_task [req-ad39875a-bae8-4a94-9789-074d535e5e72 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.361 545421 INFO oslo_service.periodic_task [req-ee8abfcc-f2f9-4e6d-9611-e2a2298f177f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.384 545473 INFO oslo_service.periodic_task [req-41d74517-e21c-42e3-ae48-2f6461235d99 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.384 545465 INFO oslo_service.periodic_task [req-02f0c9ac-4a27-41e0-bd95-73da2b8dcc81 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.393 545423 INFO oslo_service.periodic_task [req-f6263a96-3075-47ff-a7a1-67de1292e8a7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.395 545411 INFO oslo_service.periodic_task [req-4be859e3-7f99-4861-95b3-95d2cad6b95e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.404 545417 INFO oslo_service.periodic_task [req-37c4b50d-4bd2-4191-a906-ab5668efd962 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.415 545463 INFO oslo_service.periodic_task [req-e49944c4-e915-4405-811c-b470e6c6cb2f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.418 545455 INFO oslo_service.periodic_task [req-aed16de8-8f1f-4d16-9833-8846321e1776 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.422 545409 INFO oslo_service.periodic_task [req-524590e4-4a6b-4511-9e28-e24ba2ce241f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.431 545449 INFO oslo_service.periodic_task [req-ded2d3cc-3148-4388-85cf-1b4afe1fa411 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.444 545437 INFO oslo_service.periodic_task [req-206a750b-c9ce-4254-ae0b-cb9c6e9417dc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.446 545447 INFO oslo_service.periodic_task [req-cfa9a7cb-f3d7-4ff5-a45e-f245e3fc9d9e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.457 545461 INFO oslo_service.periodic_task [req-bd250c2e-e33e-42f0-8646-44f735f0beb1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.466 545383 INFO oslo_service.periodic_task [req-f856bbac-4b72-48e7-9b0f-10b22665a815 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.470 545469 INFO oslo_service.periodic_task [req-97f82af2-8819-45a9-961f-f736b15977ec - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.482 545419 INFO oslo_service.periodic_task [req-ef371c31-cd55-4c50-b4c8-7d13dc112048 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.489 545451 INFO oslo_service.periodic_task [req-be1667ad-438a-4964-9005-87be68cbc0e1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.501 545407 INFO oslo_service.periodic_task [req-98c513ef-5174-4077-b546-926dfed627aa - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.501 545425 INFO oslo_service.periodic_task [req-966b24fd-df31-4216-9b8a-7473d835f20d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.506 545459 INFO oslo_service.periodic_task [req-616164e1-1349-4da4-810c-62cd6e51f6de - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.508 545399 INFO oslo_service.periodic_task [req-d61ec586-008c-4873-9e22-515cce447845 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.508 545457 INFO oslo_service.periodic_task [req-ace4a602-d8b3-43af-8038-76fc062f4599 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.525 545445 INFO oslo_service.periodic_task [req-686c9f6e-c05f-46b1-9f45-2593ec1d0dd9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.532 545471 INFO oslo_service.periodic_task [req-c93686ec-29ff-48f7-91f6-2f72b3877803 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.536 545403 INFO oslo_service.periodic_task [req-4995c121-636d-421e-b4d9-0ec00c3bdade - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.554 545433 INFO oslo_service.periodic_task [req-55b322e0-fd7a-41f1-a299-15b53a7f3931 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.555 545467 INFO oslo_service.periodic_task [req-2604b9f7-2445-4ad3-941b-e469848cf78b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.559 545477 INFO oslo_service.periodic_task [req-a260b52c-a74c-4434-ac4a-f3d837e19b14 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.582 545479 INFO oslo_service.periodic_task [req-77b81acf-3848-4c11-937d-14175be93ff4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.597 545484 INFO oslo_service.periodic_task [req-602d7f9c-176a-4f59-8a33-972a91772d27 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.605 545391 INFO oslo_service.periodic_task [req-9c11f936-cab7-487f-9e5b-c493db0533dc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.731 545475 INFO oslo_service.periodic_task [req-ae0094ac-f1d2-4c6a-b3e9-10e6249326e6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.814 545481 INFO oslo_service.periodic_task [req-175dd709-5e02-4086-8cfe-0d26b5dfd585 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:06.826 545453 INFO oslo_service.periodic_task [req-fd681ce7-805f-4291-96f5-aba11811928e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
{3} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.655189s] ... ok
{2} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [1.696911s] ... ok
{7} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.371101s] ... ok
{6} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.453670s] ... ok
{12} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.445843s] ... ok
{16} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [2.343006s] ... ok
{10} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.477344s] ... ok
{8} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.433477s] ... ok
{11} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.481925s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.550392s] ... ok
{9} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.511795s] ... ok
{12} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [0.843235s] ... ok
{14} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [3.209146s] ... ok
{21} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{28} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.655159s] ... ok
{4} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [3.726872s] ... ok
{31} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.850547s] ... ok
{33} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.889410s] ... ok
{29} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [3.922920s] ... ok
{35} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.145583s] ... ok
{37} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [4.121154s] ... ok
{15} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [4.419452s] ... ok
{47} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [4.720840s] ... ok
{25} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [5.091523s] ... ok
{16} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [2.868451s] ... ok
{49} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [5.028764s] ... ok
{44} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.157816s] ... ok
{53} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.235631s] ... ok
{51} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [5.096066s] ... ok
{55} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.236859s] ... ok
{43} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.318413s] ... ok
{48} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [5.392309s] ... ok
{42} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.402224s] ... ok
{15} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.998176s] ... ok
{26} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.536608s] ... ok
{54} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [5.272706s] ... ok
{40} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.533174s] ... ok
{32} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [5.966517s] ... ok
{34} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [6.102836s] ... ok
{27} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [6.165380s] ... ok
{24} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [6.192022s] ... ok
{45} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [6.184462s] ... ok
{20} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [6.391671s] ... ok
{30} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [6.160561s] ... ok
{14} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [3.267148s] ... ok
{18} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [6.428966s] ... ok
{46} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [6.699739s] ... ok
{36} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [6.566823s] ... ok
{17} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.690644s] ... ok
{13} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [6.733029s] ... ok
{39} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [7.002495s] ... ok
{50} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [7.175665s] ... ok
{52} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [7.187907s] ... ok
{38} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [7.387937s] ... ok
{41} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [7.402128s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/hub.py", line 476, in fire_timers
timer()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/timer.py", line 59, in __call__
cb(*args, **kw)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/greenthread.py", line 221, in main
result = function(*args, **kwargs)
File "/home/ubuntu/nova/nova/utils.py", line 655, in context_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/tests/fixtures/nova.py", line 1661, in test_case_id_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9744, in _live_migration_operation
LOG.error("Live Migration failure: %s", e, instance=instance)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9700, in _live_migration_operation
new_xml_str = libvirt_migrate.get_updated_guest_xml(
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 66, in get_updated_guest_xml
xml_doc = _update_vif_xml(xml_doc, migrate_data, get_vif_config)
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 396, in _update_vif_xml
interface_dev.insert(index + 1, address)
TypeError: Argument 'element' has incorrect type (expected lxml.etree._Element, got NoneType)
{9} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [4.750826s] ... ok
{29} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [3.706485s] ... ok
{35} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [3.563211s] ... ok
{33} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [3.905038s] ... ok
{7} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [5.593678s] ... ok
{17} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [0.851131s] ... ok
{10} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [5.434531s] ... ok
{11} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [5.330411s] ... ok
{31} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [4.050017s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "instances" and FROM element "security_groups". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{19} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [7.869817s] ... ok
{8} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [5.540232s] ... ok
{51} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [2.595721s] ... ok
{22} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [8.281395s] ... ok
{28} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [4.860331s] ... ok
{42} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [2.982068s] ... ok
{0} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [8.864733s] ... ok
{53} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [3.467688s] ... ok
{1} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [9.238822s] ... ok
{55} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [3.535585s] ... ok
{6} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [6.963369s] ... ok
{2} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [7.672765s] ... ok
{18} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [2.865994s] ... ok
{21} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [6.066068s] ... ok
{13} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [2.517783s] ... ok
{3} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [8.026406s] ... ok
{20} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [3.228097s] ... ok
{45} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [3.359817s] ... ok
{23} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [9.551880s] ... ok
{24} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [3.644229s] ... ok
{43} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [4.360396s] ... ok
{37} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [5.774696s] ... ok
{44} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.748735s] ... ok
{27} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.887320s] ... ok
{50} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [2.955681s] ... ok
{12} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [7.110301s] ... ok
{34} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [4.172137s] ... ok
{48} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [4.757831s] ... ok
{49} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [5.150563s] ... ok
{40} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [4.361960s] ... ok
{5} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.761169s] ... ok
{47} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [5.661531s] ... ok
{1} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [1.619683s] ... ok
{30} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [4.256883s] ... ok
{4} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [7.090486s] ... ok
{52} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.321278s] ... ok
{54} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [4.966527s] ... ok
{13} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.310515s] ... ok
{25} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.614151s] ... ok
{14} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [4.357318s] ... ok
{32} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [4.749066s] ... ok
{36} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.305226s] ... ok
{46} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [4.451142s] ... ok
{19} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [3.613195s] ... ok
{22} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [3.235417s] ... ok
{26} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [6.034303s] ... ok
{41} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.316027s] ... ok
{39} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [4.867337s] ... ok
{38} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [4.599294s] ... ok
{16} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [7.087833s] ... ok
{23} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [2.802238s] ... ok
{15} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [7.006401s] ... ok
======
Totals
======
Ran: 116 tests in 12.8931 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 550.7382 sec.
==============
Worker Balance
==============
- Worker 0 (1 tests) => 0:00:08.864733
- Worker 1 (2 tests) => 0:00:10.859800
- Worker 2 (2 tests) => 0:00:09.372145
- Worker 3 (2 tests) => 0:00:09.684653
- Worker 4 (2 tests) => 0:00:10.819410
- Worker 5 (2 tests) => 0:00:10.316066
- Worker 6 (2 tests) => 0:00:09.420124
- Worker 7 (2 tests) => 0:00:07.966883
- Worker 8 (2 tests) => 0:00:07.976515
- Worker 9 (2 tests) => 0:00:07.264202
- Worker 10 (2 tests) => 0:00:07.914758
- Worker 11 (2 tests) => 0:00:07.815122
- Worker 12 (3 tests) => 0:00:10.402622
- Worker 13 (3 tests) => 0:00:10.563310
- Worker 14 (3 tests) => 0:00:10.836455
- Worker 15 (3 tests) => 0:00:12.426230
- Worker 16 (3 tests) => 0:00:12.302141
- Worker 17 (2 tests) => 0:00:07.542978
- Worker 18 (2 tests) => 0:00:09.296582
- Worker 19 (2 tests) => 0:00:11.484893
- Worker 20 (2 tests) => 0:00:09.621281
- Worker 21 (2 tests) => 0:00:09.381082
- Worker 22 (2 tests) => 0:00:11.519021
- Worker 23 (2 tests) => 0:00:12.356126
- Worker 24 (2 tests) => 0:00:09.838184
- Worker 25 (2 tests) => 0:00:10.706896
- Worker 26 (2 tests) => 0:00:11.573349
- Worker 27 (2 tests) => 0:00:10.054548
- Worker 28 (2 tests) => 0:00:08.520316
- Worker 29 (2 tests) => 0:00:07.630039
- Worker 30 (2 tests) => 0:00:10.418925
- Worker 31 (2 tests) => 0:00:07.901945
- Worker 32 (2 tests) => 0:00:10.718119
- Worker 33 (2 tests) => 0:00:07.795835
- Worker 34 (2 tests) => 0:00:10.276264
- Worker 35 (2 tests) => 0:00:07.709982
- Worker 36 (2 tests) => 0:00:10.874460
- Worker 37 (2 tests) => 0:00:09.897497
- Worker 38 (2 tests) => 0:00:11.989118
- Worker 39 (2 tests) => 0:00:11.871527
- Worker 40 (2 tests) => 0:00:09.896256
- Worker 41 (2 tests) => 0:00:11.720560
- Worker 42 (2 tests) => 0:00:08.385460
- Worker 43 (2 tests) => 0:00:09.681086
- Worker 44 (2 tests) => 0:00:09.908802
- Worker 45 (2 tests) => 0:00:09.546018
- Worker 46 (2 tests) => 0:00:11.152252
- Worker 47 (2 tests) => 0:00:10.383895
- Worker 48 (2 tests) => 0:00:10.151981
- Worker 49 (2 tests) => 0:00:10.181275
- Worker 50 (2 tests) => 0:00:10.133492
- Worker 51 (2 tests) => 0:00:07.693385
- Worker 52 (2 tests) => 0:00:10.510139
- Worker 53 (2 tests) => 0:00:08.704464
- Worker 54 (2 tests) => 0:00:10.240775
- Worker 55 (2 tests) => 0:00:08.774308
functional-py39 run-test: commands[1] | stestr slowest
Test id Runtime (s)
------------------------------------------------------------------------------------------------------------------------------------------- -----------
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True 9.552
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 9.239
nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid 8.865
nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate 8.281
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False 8.026
nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change 7.870
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.761
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False 7.673
nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate 7.402
nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 7.388
__________________________________________________________________________________ summary __________________________________________________________________________________
functional-py39: commands succeeded
congratulations :)
Tox run 13
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/easy_install.py:160: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
functional-py39 develop-inst-noop: /home/ubuntu/nova
functional-py39 installed: alembic==1.7.6,amqp==5.0.9,appdirs==1.4.4,attrs==21.4.0,automaton==2.5.0,autopage==0.5.0,bandit==1.7.4,bcrypt==3.2.0,cachetools==5.0.0,castellan==3.10.1,certifi==2021.10.8,cffi==1.15.0,charset-normalizer==2.0.12,cliff==3.10.1,cmd2==2.4.0,colorama==0.4.4,coverage==6.3.2,cryptography==36.0.1,cursive==0.2.2,ddt==1.4.4,debtcollector==2.4.0,decorator==5.1.1,dnspython==2.1.0,dogpile.cache==1.1.5,eventlet==0.33.0,extras==1.0.0,fasteners==0.17.3,fixtures==3.0.0,flake8==3.8.4,future==0.18.2,futurist==2.4.0,gabbi==2.4.0,gitdb==4.0.9,GitPython==3.1.27,greenlet==1.1.2,hacking==3.1.0,idna==3.3,iniconfig==1.1.1,iso8601==1.0.2,Jinja2==3.0.3,jmespath==0.10.0,jsonpatch==1.32,jsonpath-rw==1.4.0,jsonpath-rw-ext==1.2.2,jsonpointer==2.2,jsonschema==3.2.0,keystoneauth1==4.5.0,keystonemiddleware==9.4.0,kombu==5.2.4,lxml==4.8.0,Mako==1.1.6,MarkupSafe==2.1.1,mccabe==0.6.1,microversion-parse==1.0.1,mock==4.0.3,msgpack==1.0.3,munch==2.5.0,mypy==0.931,mypy-extensions==0.4.3,netaddr==0.8.0,netifaces==0.11.0,networkx==2.7.1,-e git+https://review.opendev.org/openstack/nova@d43538712c034023bdb3e25cd7adfdee409ed596#egg=nova,numpy==1.22.3,openstack-placement==6.0.0,openstacksdk==0.61.0,os-brick==5.2.0,os-client-config==2.1.0,os-resource-classes==1.1.0,os-service-types==1.7.0,os-traits==2.7.0,os-vif==2.7.1,os-win==5.6.0,osc-lib==2.5.0,oslo.cache==2.10.1,oslo.concurrency==4.5.0,oslo.config==8.8.0,oslo.context==4.1.0,oslo.db==11.2.0,oslo.i18n==5.1.0,oslo.log==4.7.0,oslo.messaging==12.13.0,oslo.metrics==0.4.0,oslo.middleware==4.5.1,oslo.policy==3.11.0,oslo.privsep==2.7.0,oslo.reports==2.3.0,oslo.rootwrap==6.3.1,oslo.serialization==4.3.0,oslo.service==2.8.0,oslo.upgradecheck==1.5.0,oslo.utils==4.12.2,oslo.versionedobjects==2.6.0,oslotest==4.5.0,osprofiler==3.4.2,ovs==2.16.0,ovsdbapp==1.15.1,packaging==21.3,paramiko==2.8.1,Paste==3.5.0,PasteDeploy==2.1.1,pbr==5.8.1,pluggy==1.0.0,ply==3.11,prettytable==3.2.0,prometheus-client==0.13.1,psutil==5.9.0,psycopg2-binary==2.9.3,py==1.11.0,pycadf==3.1.1,pycodestyle==2.6.0,pycparser==2.21,pydot==1.4.2,pyflakes==2.2.0,pyinotify==0.9.6,PyMySQL==1.0.2,PyNaCl==1.5.0,pyOpenSSL==22.0.0,pyparsing==3.0.7,pyperclip==1.8.2,pyroute2==0.6.6,pyroute2.core==0.6.6,pyroute2.ethtool==0.6.6,pyroute2.ipdb==0.6.6,pyroute2.ipset==0.6.6,pyroute2.ndb==0.6.6,pyroute2.nftables==0.6.6,pyroute2.nslink==0.6.6,pyrsistent==0.18.1,pytest==7.0.1,python-barbicanclient==5.3.0,python-cinderclient==8.3.0,python-dateutil==2.8.2,python-glanceclient==3.6.0,python-ironicclient==4.11.0,python-keystoneclient==4.4.0,python-neutronclient==7.8.0,python-subunit==1.4.0,pytz==2021.3,PyYAML==6.0,repoze.lru==0.7,requests==2.27.1,requests-mock==1.9.3,requestsexceptions==1.4.0,retrying==1.3.3,rfc3986==1.5.0,Routes==2.5.1,simplejson==3.17.6,six==1.16.0,smmap==5.0.0,sortedcontainers==2.4.0,SQLAlchemy==1.4.31,sqlalchemy-migrate==0.13.0,sqlparse==0.4.2,statsd==3.3.0,stestr==3.2.1,stevedore==3.5.0,taskflow==4.6.4,Tempita==0.5.2,tenacity==6.3.1,testresources==2.0.1,testscenarios==0.5.0,testtools==2.5.0,tomli==2.0.1,tooz==2.10.1,types-cryptography==3.3.15,types-enum34==1.1.8,types-ipaddress==1.0.8,types-paramiko==2.8.13,typing_extensions==4.1.1,urllib3==1.26.8,vine==5.0.0,voluptuous==0.12.2,warlock==1.3.3,wcwidth==0.2.5,WebOb==1.8.7,websockify==0.10.0,wrapt==1.13.3,wsgi-intercept==1.9.3,yappi==1.3.3
functional-py39 run-test-pre: PYTHONHASHSEED='3839048647'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
2022-03-15 19:00:38.234 546104 INFO oslo_service.periodic_task [req-e1af3b13-7de0-4001-8d70-5edcb342009b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.236 546102 INFO oslo_service.periodic_task [req-59cf51ef-b69c-437f-8545-7a54901a437b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.240 546092 INFO oslo_service.periodic_task [req-46e48855-7ae4-4212-b72d-ffa3cb3f6a62 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.263 546080 INFO oslo_service.periodic_task [req-afb5925e-1395-4b42-b112-8983bb1484ea - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.269 546116 INFO oslo_service.periodic_task [req-6286ac4b-0f91-4632-932c-2bbc997247e6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.289 546088 INFO oslo_service.periodic_task [req-18f78caa-aaa9-477d-a255-3994fdaf192d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.289 546120 INFO oslo_service.periodic_task [req-a5941413-bded-40f2-892f-c7fb78550525 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.310 546076 INFO oslo_service.periodic_task [req-eea2c701-78ab-4e50-a93d-67173d5d8d87 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.317 546082 INFO oslo_service.periodic_task [req-cc0b502e-29fc-476a-bd18-69ed6dde8dff - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.325 546084 INFO oslo_service.periodic_task [req-984fae11-90dc-45c8-8c8b-3636b011ea5d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.345 546072 INFO oslo_service.periodic_task [req-452992a9-71ab-48a6-94bc-bbce6fcf876e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.349 546146 INFO oslo_service.periodic_task [req-bad24a28-408b-421c-a297-115447cb1f33 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.355 546144 INFO oslo_service.periodic_task [req-c4aaebd8-365c-42f9-9c86-a4dd7ba75b75 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.356 546086 INFO oslo_service.periodic_task [req-1b485734-19d1-48ca-b56b-80bf3a2b729e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.374 546096 INFO oslo_service.periodic_task [req-cd3a9975-50d4-451c-b638-61119f727eee - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.378 546090 INFO oslo_service.periodic_task [req-32f92e52-435d-4c63-a7b1-ddfc91d8ae46 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.401 546100 INFO oslo_service.periodic_task [req-da5de407-4b4f-4f9e-83eb-fcc8d6fd3eed - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.404 546128 INFO oslo_service.periodic_task [req-08274c6e-c03d-4b84-bcab-21c10c77b96d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.405 546094 INFO oslo_service.periodic_task [req-6980f4ed-ccc4-49b1-b5eb-3e1bdcaa50e5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.414 546140 INFO oslo_service.periodic_task [req-50abdbd4-acfb-42e9-b8f1-af004b390d6c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.415 546108 INFO oslo_service.periodic_task [req-108c4ebd-1204-44b1-907c-1b25949b0c53 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.436 546112 INFO oslo_service.periodic_task [req-1c6e7a3f-77be-4fb7-bcca-fc0532c80e90 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.449 546122 INFO oslo_service.periodic_task [req-f6250e68-7b07-4f55-901d-f23fb41b654d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.460 546132 INFO oslo_service.periodic_task [req-bfa86941-1949-43a6-9876-70695d7dd3fa - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.464 546138 INFO oslo_service.periodic_task [req-3429e6ab-6d9b-47fd-bfe1-b9db59f0c721 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.469 546136 INFO oslo_service.periodic_task [req-7c81f3fe-73f6-4754-9f12-f9b62092b047 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.487 546098 INFO oslo_service.periodic_task [req-7e08d11b-84eb-428d-89cf-94270cdcc8ca - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.489 546118 INFO oslo_service.periodic_task [req-014a2517-4e09-494e-a4fa-6d3c2fb72e28 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.495 546134 INFO oslo_service.periodic_task [req-d7213cf1-eeb8-4000-a3f8-6d734fd4ce67 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.500 546172 INFO oslo_service.periodic_task [req-7332fb12-c521-4371-9bf9-ce4c22e002ae - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.504 546156 INFO oslo_service.periodic_task [req-693e3e2d-e736-49fa-9d2e-39f5db416145 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.520 546078 INFO oslo_service.periodic_task [req-fdf06b7b-d7a0-419d-aa7f-9c273e57656d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.523 546110 INFO oslo_service.periodic_task [req-fce8af88-da41-4756-8a76-c68bc4b5c907 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.523 546150 INFO oslo_service.periodic_task [req-90cf92e4-9d63-41f1-911f-a26e199a75c6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.560 546106 INFO oslo_service.periodic_task [req-36573129-9cb2-41fd-a401-5e68cb53c875 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.567 546142 INFO oslo_service.periodic_task [req-0998b52d-1312-42bc-a782-f33df3cf18d5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.560 546130 INFO oslo_service.periodic_task [req-d76f63ec-5b02-49b2-9e88-23b2e54249c3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.574 546126 INFO oslo_service.periodic_task [req-062f8c1c-da55-45c2-8b74-6dba6307a24a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.602 546158 INFO oslo_service.periodic_task [req-43863f57-3c01-4ad4-aef4-4a0adb0767d0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.609 546154 INFO oslo_service.periodic_task [req-dce8d010-8edf-48b8-a391-8b0bee90560f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.622 546160 INFO oslo_service.periodic_task [req-788b1581-c05b-4366-9dbe-d4fe88cd8279 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.626 546124 INFO oslo_service.periodic_task [req-4c6d4ccc-0db6-41b9-b744-526dacee78bc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.640 546164 INFO oslo_service.periodic_task [req-69333c27-575e-4346-8786-56d58a9c3f4d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.649 546174 INFO oslo_service.periodic_task [req-347a4fe3-077c-49b6-8fa6-826a3f2276c4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.660 546074 INFO oslo_service.periodic_task [req-1d2fee29-e3c4-4cb5-8178-07f5a46b8abc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.666 546181 INFO oslo_service.periodic_task [req-3e5c5dc4-f12a-4616-9eb6-baba05a3cc0b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.666 546166 INFO oslo_service.periodic_task [req-eeaabcb5-22b2-4bea-95b2-9f16ca9c4593 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.668 546114 INFO oslo_service.periodic_task [req-43779452-a68e-478d-b7a1-65ab12bd5d76 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.678 546152 INFO oslo_service.periodic_task [req-3d31d382-9bf2-45ec-aa9b-7ca8ad0f645d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.697 546168 INFO oslo_service.periodic_task [req-1836de58-6246-4d2a-ae5f-50479498f97f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.710 546176 INFO oslo_service.periodic_task [req-332d3c6c-ed8f-414d-ac70-762ce89614ff - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.718 546162 INFO oslo_service.periodic_task [req-9cccbf72-106c-4170-927a-935a39e695c3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.760 546170 INFO oslo_service.periodic_task [req-2aca696c-d0d8-499e-a0f5-94256eb09de5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.785 546183 INFO oslo_service.periodic_task [req-e7251782-3261-4e8a-b3c8-cbe4e2581e39 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.796 546148 INFO oslo_service.periodic_task [req-9385c35e-51dc-4a08-8f28-48f36b7373b0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:00:38.809 546178 INFO oslo_service.periodic_task [req-c9c8c4f2-8d1b-496a-9ccc-2ff0c9c2c21e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
{1} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.648420s] ... ok
{4} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.349294s] ... ok
{10} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.427484s] ... ok
{8} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.410183s] ... ok
{6} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.404225s] ... ok
{7} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.388667s] ... ok
{12} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.376271s] ... ok
{9} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.386015s] ... ok
{5} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.463675s] ... ok
{19} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [3.233353s] ... ok
{33} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.495703s] ... ok
{36} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.825664s] ... ok
{34} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.786925s] ... ok
{31} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.714533s] ... ok
{40} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [4.085053s] ... ok
{41} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.157887s] ... ok
{15} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [4.545764s] ... ok
{17} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [4.688936s] ... ok
{13} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [4.798190s] ... ok
{52} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [4.697583s] ... ok
{34} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [1.289199s] ... ok
{14} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [5.105664s] ... ok
{51} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [4.936793s] ... ok
{47} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.061776s] ... ok
{28} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.446947s] ... ok
{37} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.529957s] ... ok
{49} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [5.112034s] ... ok
{46} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.264462s] ... ok
{43} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.360193s] ... ok
{33} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [2.020525s] ... ok
{26} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.369020s] ... ok
{44} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [5.433408s] ... ok
{45} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.379499s] ... ok
{25} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [5.693887s] ... ok
{32} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [5.689405s] ... ok
{38} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.455988s] ... ok
{39} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [5.763046s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "instances" and FROM element "security_groups". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{53} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [5.722732s] ... ok
{42} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [6.135784s] ... ok
{27} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [6.221933s] ... ok
{16} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [6.579419s] ... ok
{22} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [6.564086s] ... ok
{24} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [6.774858s] ... ok
{20} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.668111s] ... ok
{18} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [6.914533s] ... ok
{21} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [6.815395s] ... ok
{10} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [4.845121s] ... ok
{48} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [6.820365s] ... ok
{38} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [1.307758s] ... ok
{50} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [7.086297s] ... ok
{55} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [6.831240s] ... ok
{23} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [7.348273s] ... ok
{11} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [7.438125s] ... ok
{8} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [5.253562s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/hub.py", line 476, in fire_timers
timer()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/timer.py", line 59, in __call__
cb(*args, **kw)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/greenthread.py", line 221, in main
result = function(*args, **kwargs)
File "/home/ubuntu/nova/nova/utils.py", line 655, in context_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/tests/fixtures/nova.py", line 1661, in test_case_id_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9744, in _live_migration_operation
LOG.error("Live Migration failure: %s", e, instance=instance)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9700, in _live_migration_operation
new_xml_str = libvirt_migrate.get_updated_guest_xml(
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 66, in get_updated_guest_xml
xml_doc = _update_vif_xml(xml_doc, migrate_data, get_vif_config)
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 396, in _update_vif_xml
interface_dev.insert(index + 1, address)
TypeError: Argument 'element' has incorrect type (expected lxml.etree._Element, got NoneType)
{31} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [3.744660s] ... ok
{35} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [7.503553s] ... ok
{30} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [7.706743s] ... ok
{9} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [5.524516s] ... ok
{40} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [3.533148s] ... ok
{29} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [7.771519s] ... ok
{19} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [4.745251s] ... ok
{49} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [2.750775s] ... ok
{54} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [7.998640s] ... ok
{3} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [8.328914s] ... ok
{41} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [4.077731s] ... ok
{23} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{22} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [2.491245s] ... ok
{3} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.521141s] ... ok
{2} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.069959s] ... ok
{2} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [0.276703s] ... ok
{37} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [3.796239s] ... ok
{12} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.935405s] ... ok
{25} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [3.566263s] ... ok
{20} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [2.641366s] ... ok
{16} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [2.946899s] ... ok
{36} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [5.595792s] ... ok
{5} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [6.987151s] ... ok
{18} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [2.553483s] ... ok
{38} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [2.335501s] ... ok
{0} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [9.587840s] ... ok
{47} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [4.503185s] ... ok
{1} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [8.062908s] ... ok
{4} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.790278s] ... ok
{37} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.785745s] ... ok
{6} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.735198s] ... ok
{24} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.406907s] ... ok
{43} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [4.515745s] ... ok
{21} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [2.988889s] ... ok
{28} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [4.646323s] ... ok
{27} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [3.706056s] ... ok
{52} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [5.114454s] ... ok
{44} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.558509s] ... ok
{11} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [2.780549s] ... ok
{7} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [7.916654s] ... ok
{45} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.600702s] ... ok
{36} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.207838s] ... ok
{26} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [5.020229s] ... ok
{50} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.555340s] ... ok
{33} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [5.210549s] ... ok
{34} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.724787s] ... ok
{51} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [5.620571s] ... ok
{53} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.697156s] ... ok
{42} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [4.820366s] ... ok
{46} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [5.548943s] ... ok
{32} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [5.434507s] ... ok
{15} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [6.923071s] ... ok
{35} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.712044s] ... ok
{30} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [3.619949s] ... ok
{39} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [5.563452s] ... ok
{17} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [6.821735s] ... ok
{13} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [6.917792s] ... ok
{54} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [3.495371s] ... ok
{48} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [4.770276s] ... ok
{29} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [3.976364s] ... ok
{14} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [6.913648s] ... ok
{55} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [4.829055s] ... ok
======
Totals
======
Ran: 116 tests in 12.2260 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 557.0255 sec.
==============
Worker Balance
==============
- Worker 0 (1 tests) => 0:00:09.587840
- Worker 1 (2 tests) => 0:00:09.713608
- Worker 2 (2 tests) => 0:00:09.348133
- Worker 3 (2 tests) => 0:00:08.851807
- Worker 4 (2 tests) => 0:00:10.142033
- Worker 5 (2 tests) => 0:00:09.453120
- Worker 6 (2 tests) => 0:00:10.141549
- Worker 7 (2 tests) => 0:00:10.308171
- Worker 8 (2 tests) => 0:00:07.665689
- Worker 9 (2 tests) => 0:00:07.913114
- Worker 10 (2 tests) => 0:00:07.275201
- Worker 11 (2 tests) => 0:00:10.220651
- Worker 12 (2 tests) => 0:00:09.314813
- Worker 13 (2 tests) => 0:00:11.717169
- Worker 14 (2 tests) => 0:00:12.020674
- Worker 15 (2 tests) => 0:00:11.469898
- Worker 16 (2 tests) => 0:00:09.528020
- Worker 17 (2 tests) => 0:00:11.511830
- Worker 18 (2 tests) => 0:00:09.468807
- Worker 19 (2 tests) => 0:00:07.979550
- Worker 20 (2 tests) => 0:00:09.311000
- Worker 21 (2 tests) => 0:00:09.805768
- Worker 22 (2 tests) => 0:00:09.057209
- Worker 23 (2 tests) => 0:00:08.766138
- Worker 24 (2 tests) => 0:00:10.183696
- Worker 25 (2 tests) => 0:00:09.261353
- Worker 26 (2 tests) => 0:00:10.390261
- Worker 27 (2 tests) => 0:00:09.929647
- Worker 28 (2 tests) => 0:00:10.094837
- Worker 29 (2 tests) => 0:00:11.749961
- Worker 30 (2 tests) => 0:00:11.328409
- Worker 31 (2 tests) => 0:00:07.460601
- Worker 32 (2 tests) => 0:00:11.124918
- Worker 33 (3 tests) => 0:00:10.730433
- Worker 34 (3 tests) => 0:00:10.803905
- Worker 35 (2 tests) => 0:00:11.217826
- Worker 36 (3 tests) => 0:00:10.632217
- Worker 37 (3 tests) => 0:00:10.114490
- Worker 38 (3 tests) => 0:00:09.101536
- Worker 39 (2 tests) => 0:00:11.327920
- Worker 40 (2 tests) => 0:00:07.618907
- Worker 41 (2 tests) => 0:00:08.237455
- Worker 42 (2 tests) => 0:00:10.957436
- Worker 43 (2 tests) => 0:00:09.877721
- Worker 44 (2 tests) => 0:00:09.993319
- Worker 45 (2 tests) => 0:00:09.981854
- Worker 46 (2 tests) => 0:00:10.815691
- Worker 47 (2 tests) => 0:00:09.567283
- Worker 48 (2 tests) => 0:00:11.592065
- Worker 49 (2 tests) => 0:00:07.864572
- Worker 50 (2 tests) => 0:00:10.643042
- Worker 51 (2 tests) => 0:00:10.559935
- Worker 52 (2 tests) => 0:00:09.813957
- Worker 53 (2 tests) => 0:00:10.421475
- Worker 54 (2 tests) => 0:00:11.495683
- Worker 55 (2 tests) => 0:00:11.661706
functional-py39 run-test: commands[1] | stestr slowest
Test id Runtime (s)
--------------------------------------------------------------------------------------------------------------------------------------------------------------------- -----------
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True 9.588
nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid 9.070
nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate 8.329
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 8.063
nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules 7.999
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False 7.917
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False 7.790
nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute 7.772
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.735
nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure 7.707
__________________________________________________________________________________ summary __________________________________________________________________________________
functional-py39: commands succeeded
congratulations :)
Tox run 14
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/easy_install.py:160: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
functional-py39 develop-inst-noop: /home/ubuntu/nova
functional-py39 installed: alembic==1.7.6,amqp==5.0.9,appdirs==1.4.4,attrs==21.4.0,automaton==2.5.0,autopage==0.5.0,bandit==1.7.4,bcrypt==3.2.0,cachetools==5.0.0,castellan==3.10.1,certifi==2021.10.8,cffi==1.15.0,charset-normalizer==2.0.12,cliff==3.10.1,cmd2==2.4.0,colorama==0.4.4,coverage==6.3.2,cryptography==36.0.1,cursive==0.2.2,ddt==1.4.4,debtcollector==2.4.0,decorator==5.1.1,dnspython==2.1.0,dogpile.cache==1.1.5,eventlet==0.33.0,extras==1.0.0,fasteners==0.17.3,fixtures==3.0.0,flake8==3.8.4,future==0.18.2,futurist==2.4.0,gabbi==2.4.0,gitdb==4.0.9,GitPython==3.1.27,greenlet==1.1.2,hacking==3.1.0,idna==3.3,iniconfig==1.1.1,iso8601==1.0.2,Jinja2==3.0.3,jmespath==0.10.0,jsonpatch==1.32,jsonpath-rw==1.4.0,jsonpath-rw-ext==1.2.2,jsonpointer==2.2,jsonschema==3.2.0,keystoneauth1==4.5.0,keystonemiddleware==9.4.0,kombu==5.2.4,lxml==4.8.0,Mako==1.1.6,MarkupSafe==2.1.1,mccabe==0.6.1,microversion-parse==1.0.1,mock==4.0.3,msgpack==1.0.3,munch==2.5.0,mypy==0.931,mypy-extensions==0.4.3,netaddr==0.8.0,netifaces==0.11.0,networkx==2.7.1,-e git+https://review.opendev.org/openstack/nova@d43538712c034023bdb3e25cd7adfdee409ed596#egg=nova,numpy==1.22.3,openstack-placement==6.0.0,openstacksdk==0.61.0,os-brick==5.2.0,os-client-config==2.1.0,os-resource-classes==1.1.0,os-service-types==1.7.0,os-traits==2.7.0,os-vif==2.7.1,os-win==5.6.0,osc-lib==2.5.0,oslo.cache==2.10.1,oslo.concurrency==4.5.0,oslo.config==8.8.0,oslo.context==4.1.0,oslo.db==11.2.0,oslo.i18n==5.1.0,oslo.log==4.7.0,oslo.messaging==12.13.0,oslo.metrics==0.4.0,oslo.middleware==4.5.1,oslo.policy==3.11.0,oslo.privsep==2.7.0,oslo.reports==2.3.0,oslo.rootwrap==6.3.1,oslo.serialization==4.3.0,oslo.service==2.8.0,oslo.upgradecheck==1.5.0,oslo.utils==4.12.2,oslo.versionedobjects==2.6.0,oslotest==4.5.0,osprofiler==3.4.2,ovs==2.16.0,ovsdbapp==1.15.1,packaging==21.3,paramiko==2.8.1,Paste==3.5.0,PasteDeploy==2.1.1,pbr==5.8.1,pluggy==1.0.0,ply==3.11,prettytable==3.2.0,prometheus-client==0.13.1,psutil==5.9.0,psycopg2-binary==2.9.3,py==1.11.0,pycadf==3.1.1,pycodestyle==2.6.0,pycparser==2.21,pydot==1.4.2,pyflakes==2.2.0,pyinotify==0.9.6,PyMySQL==1.0.2,PyNaCl==1.5.0,pyOpenSSL==22.0.0,pyparsing==3.0.7,pyperclip==1.8.2,pyroute2==0.6.6,pyroute2.core==0.6.6,pyroute2.ethtool==0.6.6,pyroute2.ipdb==0.6.6,pyroute2.ipset==0.6.6,pyroute2.ndb==0.6.6,pyroute2.nftables==0.6.6,pyroute2.nslink==0.6.6,pyrsistent==0.18.1,pytest==7.0.1,python-barbicanclient==5.3.0,python-cinderclient==8.3.0,python-dateutil==2.8.2,python-glanceclient==3.6.0,python-ironicclient==4.11.0,python-keystoneclient==4.4.0,python-neutronclient==7.8.0,python-subunit==1.4.0,pytz==2021.3,PyYAML==6.0,repoze.lru==0.7,requests==2.27.1,requests-mock==1.9.3,requestsexceptions==1.4.0,retrying==1.3.3,rfc3986==1.5.0,Routes==2.5.1,simplejson==3.17.6,six==1.16.0,smmap==5.0.0,sortedcontainers==2.4.0,SQLAlchemy==1.4.31,sqlalchemy-migrate==0.13.0,sqlparse==0.4.2,statsd==3.3.0,stestr==3.2.1,stevedore==3.5.0,taskflow==4.6.4,Tempita==0.5.2,tenacity==6.3.1,testresources==2.0.1,testscenarios==0.5.0,testtools==2.5.0,tomli==2.0.1,tooz==2.10.1,types-cryptography==3.3.15,types-enum34==1.1.8,types-ipaddress==1.0.8,types-paramiko==2.8.13,typing_extensions==4.1.1,urllib3==1.26.8,vine==5.0.0,voluptuous==0.12.2,warlock==1.3.3,wcwidth==0.2.5,WebOb==1.8.7,websockify==0.10.0,wrapt==1.13.3,wsgi-intercept==1.9.3,yappi==1.3.3
functional-py39 run-test-pre: PYTHONHASHSEED='2522751187'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
2022-03-15 19:01:09.304 546725 INFO oslo_service.periodic_task [req-90dae757-351c-4ad7-b43e-0b4a358e7ff1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.390 546737 INFO oslo_service.periodic_task [req-cb0874bc-882d-49ca-8e5c-819cdce4c973 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.521 546733 INFO oslo_service.periodic_task [req-5c18cde2-1566-4da9-8c55-ccaa0ce5545b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.534 546727 INFO oslo_service.periodic_task [req-904f2e70-f200-4639-9490-8d215a14184d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.544 546739 INFO oslo_service.periodic_task [req-13d61c82-e318-41ab-b79b-0993c8bafccd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.552 546745 INFO oslo_service.periodic_task [req-8324119e-3826-4ef3-ad38-d8ebb2e42969 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.572 546779 INFO oslo_service.periodic_task [req-08a3ce41-a675-4945-b6cd-61c7baf6cee8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.580 546747 INFO oslo_service.periodic_task [req-44cb4b17-acc0-4dc4-a981-99df5d12a513 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.608 546749 INFO oslo_service.periodic_task [req-4aab1295-3500-4693-b8ad-77c1063fc43b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.611 546735 INFO oslo_service.periodic_task [req-44acd905-7909-42d1-a216-7dbae8a113a7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.640 546755 INFO oslo_service.periodic_task [req-c86faa86-187f-4c50-bb9c-6d56090df6ec - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.664 546781 INFO oslo_service.periodic_task [req-cd66dd1a-9bc8-4ab5-9a2e-1405359ec40d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.667 546765 INFO oslo_service.periodic_task [req-7b379940-0e19-4c92-99aa-85bf4987fb51 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.682 546769 INFO oslo_service.periodic_task [req-9b4a3172-2c05-4209-b4b0-b0f9f9b981ae - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.698 546763 INFO oslo_service.periodic_task [req-c03d3c26-8146-45ab-8729-98b77d02cbac - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.725 546775 INFO oslo_service.periodic_task [req-4498dd14-a5d3-4856-8dd5-e2c6eb1c3c81 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.731 546731 INFO oslo_service.periodic_task [req-7c6afc6f-ee34-4694-bb48-b3ba1e99a78c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.736 546785 INFO oslo_service.periodic_task [req-553472d3-13b3-40e6-af89-f794342858e3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.735 546811 INFO oslo_service.periodic_task [req-236db344-eea9-452c-820b-6317ee46e5b1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.732 546743 INFO oslo_service.periodic_task [req-30eface0-c696-4420-a12d-39e1633fe626 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.752 546791 INFO oslo_service.periodic_task [req-1473894f-e924-475d-95f9-4d566909a9a2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.753 546729 INFO oslo_service.periodic_task [req-9119e5f0-fb0c-48c9-9287-33a3f925718f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.752 546771 INFO oslo_service.periodic_task [req-3e2990c8-c5f3-4526-8274-9071e449359f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.773 546777 INFO oslo_service.periodic_task [req-8a847a80-bed6-44f4-a947-4fc463e19905 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.774 546795 INFO oslo_service.periodic_task [req-06dbac6b-ca9e-4f4b-9826-4af044e7ef8e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.790 546751 INFO oslo_service.periodic_task [req-74b34f5c-a23f-49c6-ae19-f1c994fcf28c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.812 546753 INFO oslo_service.periodic_task [req-0a99fb4a-8f48-457a-a5bc-db7b1a902ef3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.813 546801 INFO oslo_service.periodic_task [req-6030e6bf-444d-45d2-b858-873ab13d33ec - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.821 546797 INFO oslo_service.periodic_task [req-cf6bab5d-a67b-41d9-802a-bdb8128491c1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.824 546787 INFO oslo_service.periodic_task [req-0e215175-4243-4aa1-805d-d411ec1a1b62 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.843 546789 INFO oslo_service.periodic_task [req-455a2285-0ca7-4a92-894b-7bf8ab09e872 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.846 546767 INFO oslo_service.periodic_task [req-1598359f-1a2b-4bc7-aa0b-a0da57fb5cd5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.860 546783 INFO oslo_service.periodic_task [req-9f556e1d-9534-4567-ba6b-51cc50831530 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.868 546807 INFO oslo_service.periodic_task [req-f587ae9e-09c8-4d19-bb9a-7589a7d5e6cb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.869 546823 INFO oslo_service.periodic_task [req-bbb26cb8-5905-43b4-9ccb-c79116f8e4b3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.898 546741 INFO oslo_service.periodic_task [req-2ff1d02a-ed4a-4c4b-9aaa-a6b11eef1dae - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.900 546773 INFO oslo_service.periodic_task [req-baac3695-e6fa-4d44-a175-82488b4fe282 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.905 546813 INFO oslo_service.periodic_task [req-03a6a71b-ba78-4e4d-8647-a4237a3922a1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.907 546829 INFO oslo_service.periodic_task [req-9f459f6b-d2bd-47e4-8fb9-7e9fe0d3ec97 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.909 546815 INFO oslo_service.periodic_task [req-239b8c4c-415b-4a02-be5f-90cebe78a0e3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.920 546793 INFO oslo_service.periodic_task [req-94f60424-c67b-44f6-9baa-b90965ab96c1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.929 546757 INFO oslo_service.periodic_task [req-c51ce979-f591-4bd0-8eb9-193acfe35a44 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.934 546759 INFO oslo_service.periodic_task [req-ec5908dd-de53-47d1-8a8d-b8bab89c1568 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.936 546761 INFO oslo_service.periodic_task [req-f707a58c-c9cc-4a8b-99da-2efbb453e95c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.936 546821 INFO oslo_service.periodic_task [req-75197aaf-d82e-4956-ac11-3d068089f429 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.939 546834 INFO oslo_service.periodic_task [req-8b4b4149-6c22-4582-ac88-bde9047fd094 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.940 546827 INFO oslo_service.periodic_task [req-ab19ce84-ae85-438c-bcf5-ed952d14b705 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.943 546805 INFO oslo_service.periodic_task [req-2aec0250-de4a-44c3-a829-578c8a84820a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.950 546809 INFO oslo_service.periodic_task [req-7f66373b-a261-414b-bbc5-192e4c2b2b76 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.952 546819 INFO oslo_service.periodic_task [req-b227ec55-95dc-4f28-bf73-0ebeb286ec2c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:09.945 546825 INFO oslo_service.periodic_task [req-c70ace7e-7821-409e-ab6f-fc2124f2ea88 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:10.007 546832 INFO oslo_service.periodic_task [req-ad8cb696-f0d3-4081-bb83-dcbcaf6d6186 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:10.008 546799 INFO oslo_service.periodic_task [req-17f62c50-8bc0-4b7f-930f-683944ee3a86 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:10.020 546803 INFO oslo_service.periodic_task [req-d91081f9-9046-4956-946a-b2ad41bb96a6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:10.039 546817 INFO oslo_service.periodic_task [req-f8ea153a-4eeb-4d20-9830-79b8bdf69bab - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:10.175 546836 INFO oslo_service.periodic_task [req-df18f277-f321-44a9-b33d-2fc2512bc036 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
{14} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [1.621869s] ... ok
{3} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.694446s] ... ok
{6} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.372704s] ... ok
{7} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.358913s] ... ok
{12} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.422701s] ... ok
{11} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.446904s] ... ok
{10} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.474980s] ... ok
{9} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.433794s] ... ok
{8} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.390146s] ... ok
{13} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.508330s] ... ok
{21} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [3.262932s] ... ok
{2} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{5} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [3.846199s] ... ok
{31} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.675326s] ... ok
{35} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.862266s] ... ok
{33} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.941550s] ... ok
{38} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [3.965946s] ... ok
{19} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [4.428387s] ... ok
{15} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [4.538918s] ... ok
{39} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.194654s] ... ok
{17} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [4.374082s] ... ok
{31} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [0.991156s] ... ok
{16} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [4.636339s] ... ok
{52} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [4.842306s] ... ok
{35} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.290719s] ... ok
{54} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [4.975281s] ... ok
{44} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [5.061865s] ... ok
{51} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [5.027965s] ... ok
{45} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.169750s] ... ok
{46} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.041830s] ... ok
{48} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.297869s] ... ok
{53} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [5.244686s] ... ok
{55} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [5.111274s] ... ok
{42} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.445287s] ... ok
{41} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.594154s] ... ok
{30} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [5.790861s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "instances" and FROM element "security_groups". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{47} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.627710s] ... ok
{28} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [6.125628s] ... ok
{22} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [6.141681s] ... ok
{32} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [6.065372s] ... ok
{27} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [6.435405s] ... ok
{29} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [6.235260s] ... ok
{34} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [6.231495s] ... ok
{30} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.641943s] ... ok
{23} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [6.559128s] ... ok
{25} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.632260s] ... ok
{24} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [6.473873s] ... ok
{20} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [6.889499s] ... ok
{26} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [7.112597s] ... ok
{49} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [7.056305s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/hub.py", line 476, in fire_timers
timer()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/timer.py", line 59, in __call__
cb(*args, **kw)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/greenthread.py", line 221, in main
result = function(*args, **kwargs)
File "/home/ubuntu/nova/nova/utils.py", line 655, in context_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/tests/fixtures/nova.py", line 1661, in test_case_id_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9744, in _live_migration_operation
LOG.error("Live Migration failure: %s", e, instance=instance)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9700, in _live_migration_operation
new_xml_str = libvirt_migrate.get_updated_guest_xml(
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 66, in get_updated_guest_xml
xml_doc = _update_vif_xml(xml_doc, migrate_data, get_vif_config)
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 396, in _update_vif_xml
interface_dev.insert(index + 1, address)
TypeError: Argument 'element' has incorrect type (expected lxml.etree._Element, got NoneType)
{12} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [4.927908s] ... ok
{18} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [7.027282s] ... ok
{36} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [7.161180s] ... ok
{43} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [7.327474s] ... ok
{11} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [5.233768s] ... ok
{50} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [7.329167s] ... ok
{4} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [7.821765s] ... ok
{40} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [7.400921s] ... ok
{37} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [7.431845s] ... ok
{46} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [2.475304s] ... ok
{13} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [5.277128s] ... ok
{33} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [4.016274s] ... ok
{10} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [5.751576s] ... ok
{24} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [1.697086s] ... ok
{38} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [4.351493s] ... ok
{48} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [2.914156s] ... ok
{39} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [3.958384s] ... ok
{7} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [6.291299s] ... ok
{42} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [2.845403s] ... ok
{9} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [6.127509s] ... ok
{14} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [7.303531s] ... ok
{4} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [1.400906s] ... ok
{0} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [9.478088s] ... ok
{3} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [7.526204s] ... ok
{1} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.738225s] ... ok
{45} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [4.414451s] ... ok
{18} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [2.541514s] ... ok
{6} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.811152s] ... ok
{21} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [6.504735s] ... ok
{35} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [4.695660s] ... ok
{29} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [3.530256s] ... ok
{22} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.872533s] ... ok
{34} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [3.609833s] ... ok
{44} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.901123s] ... ok
{41} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [4.443139s] ... ok
{2} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [6.754505s] ... ok
{28} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [4.165899s] ... ok
{51} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [4.952923s] ... ok
{54} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [5.084219s] ... ok
{8} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.804730s] ... ok
{53} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [4.871347s] ... ok
{20} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [3.577965s] ... ok
{30} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.994089s] ... ok
{27} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [4.199211s] ... ok
{1} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [0.913551s] ... ok
{5} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [6.792938s] ... ok
{55} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [4.961601s] ... ok
{47} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.685623s] ... ok
{31} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.872951s] ... ok
{26} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.545829s] ... ok
{32} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [4.718629s] ... ok
{23} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [4.354477s] ... ok
{52} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [5.926040s] ... ok
{37} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [3.331786s] ... ok
{36} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [3.796549s] ... ok
{43} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [3.838572s] ... ok
{40} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [3.631622s] ... ok
{15} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.932966s] ... ok
{14} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [2.391469s] ... ok
{19} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [7.133361s] ... ok
{32} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.703086s] ... ok
{16} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [6.835762s] ... ok
{49} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [4.589822s] ... ok
{17} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [7.214736s] ... ok
{50} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [4.891120s] ... ok
{25} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [6.537677s] ... FAILED
Captured traceback:
~~~~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/nova/tests/functional/regressions/test_bug_1781710.py", line 113, in test_anti_affinity_multi_create
server = self._wait_for_state_change(server, 'ACTIVE')
File "/home/ubuntu/nova/nova/tests/functional/integrated_helpers.py", line 144, in _wait_for_state_change
return self._wait_for_server_parameter(
File "/home/ubuntu/nova/nova/tests/functional/integrated_helpers.py", line 136, in _wait_for_server_parameter
self.fail('Wait for state change failed, '
File "/usr/lib/python3.9/unittest/case.py", line 670, in fail
raise self.failureException(msg)
AssertionError: Wait for state change failed, expected_params={'status': 'ACTIVE'}, server={'id': '020256b6-4fa4-4621-b75d-c6b3e4bf3005', 'name': 'rmdfhwajwefqofvmknuo-2', 'status': 'ERROR', 'tenant_id': '6f70656e737461636b20342065766572', 'user_id': 'fake', 'metadata': {}, 'hostId': '', 'image': {'id': '155d900f-4e14-4e4c-a73d-069cbf4541e6', 'links': [{'rel': 'bookmark', 'href': 'http://3b0b4d72-b042-4a86-859a-459d5e388023/images/155d900f-4e14-4e4c-a73d-069cbf4541e6'}]}, 'flavor': {'vcpus': 1, 'ram': 512, 'disk': 1, 'ephemeral': 0, 'swap': 0, 'original_name': 'm1.tiny', 'extra_specs': {}}, 'created': '2022-03-15T19:01:18Z', 'updated': '2022-03-15T19:01:18Z', 'addresses': {}, 'accessIPv4': '', 'accessIPv6': '', 'links': [{'rel': 'self', 'href': 'http://3b0b4d72-b042-4a86-859a-459d5e388023/v2.1/servers/020256b6-4fa4-4621-b75d-c6b3e4bf3005'}, {'rel': 'bookmark', 'href': 'http://3b0b4d72-b042-4a86-859a-459d5e388023/servers/020256b6-4fa4-4621-b75d-c6b3e4bf3005'}], 'OS-DCF:diskConfig': 'MANUAL', 'fault': {'code': 400, 'created': '2022-03-15T19:01:18Z', 'message': 'ServerGroup policy is not supported: ServerGroupAntiAffinityFilter not configured'}, 'OS-EXT-AZ:availability_zone': '', 'config_drive': '', 'key_name': None, 'OS-SRV-USG:launched_at': None, 'OS-SRV-USG:terminated_at': None, 'OS-EXT-SRV-ATTR:host': None, 'OS-EXT-SRV-ATTR:instance_name': 'instance-00000002', 'OS-EXT-SRV-ATTR:hypervisor_hostname': None, 'OS-EXT-SRV-ATTR:reservation_id': 'r-ymqz7qid', 'OS-EXT-SRV-ATTR:launch_index': 1, 'OS-EXT-SRV-ATTR:hostname': 'rmdfhwajwefqofvmknuo-2', 'OS-EXT-SRV-ATTR:kernel_id': '', 'OS-EXT-SRV-ATTR:ramdisk_id': '', 'OS-EXT-SRV-ATTR:root_device_name': None, 'OS-EXT-SRV-ATTR:user_data': None, 'OS-EXT-STS:task_state': None, 'OS-EXT-STS:vm_state': 'error', 'OS-EXT-STS:power_state': 0, 'os-extended-volumes:volumes_attached': [], 'host_status': '', 'locked': False, 'locked_reason': None, 'description': None, 'tags': [], 'trusted_image_certificates': None, 'server_groups': ['2a90e75f-a87f-445c-ac4e-64e3873adb95']}
Captured pythonlogging:
~~~~~~~~~~~~~~~~~~~~~~
2022-03-15 19:01:17,091 WARNING [oslo_policy.policy] JSON formatted policy_file support is deprecated since Victoria release. You need to use YAML format which will be default in future. You can use ``oslopolicy-convert-json-to-yaml`` tool to convert existing JSON-formatted policy file to YAML-formatted in backward compatible way: https://docs.openstack.org/oslo.policy/latest/cli/oslopolicy-convert-json-to-yaml.html.
2022-03-15 19:01:17,093 WARNING [oslo_policy.policy] JSON formatted policy_file support is deprecated since Victoria release. You need to use YAML format which will be default in future. You can use ``oslopolicy-convert-json-to-yaml`` tool to convert existing JSON-formatted policy file to YAML-formatted in backward compatible way: https://docs.openstack.org/oslo.policy/latest/cli/oslopolicy-convert-json-to-yaml.html.
2022-03-15 19:01:17,096 WARNING [oslo_policy.policy] Policy Rules ['os_compute_api:extensions', 'os_compute_api:os-floating-ip-pools', 'os_compute_api:os-quota-sets:defaults', 'os_compute_api:os-availability-zone:list', 'os_compute_api:limits', 'system_admin_api', 'system_reader_api', 'project_admin_api', 'project_member_api', 'project_reader_api', 'system_admin_or_owner', 'system_or_project_reader', 'os_compute_api:limits:other_project', 'os_compute_api:os-lock-server:unlock:unlock_override', 'os_compute_api:servers:create:zero_disk_flavor', 'compute:servers:resize:cross_cell'] specified in policy files are the same as the defaults provided by the service. You can remove these rules from policy files which will make maintenance easier. You can detect these redundant rules by ``oslopolicy-list-redundant`` tool also.
2022-03-15 19:01:17,138 WARNING [placement.db_api] TransactionFactory already started, not reconfiguring.
2022-03-15 19:01:17,592 INFO [nova.service] Starting conductor node (version 24.1.0)
2022-03-15 19:01:17,634 INFO [nova.service] Starting scheduler node (version 24.1.0)
2022-03-15 19:01:17,656 INFO [nova.virt.driver] Loading compute driver 'fake.SmallFakeDriver'
2022-03-15 19:01:17,657 INFO [nova.compute.provider_config] No provider configs found in /etc/nova/provider_config/. If files are present, ensure the Nova process has access.
2022-03-15 19:01:17,663 INFO [nova.service] Starting compute node (version 24.1.0)
2022-03-15 19:01:17,683 WARNING [nova.compute.manager] Compute node host1 not found in the database. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 19:01:17,688 INFO [nova.compute.manager] Looking for unclaimed instances stuck in BUILDING status for nodes managed by this host
2022-03-15 19:01:17,700 WARNING [nova.compute.manager] No compute node record found for host host1. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 19:01:17,704 WARNING [nova.compute.resource_tracker] No compute node record for host1:host1
2022-03-15 19:01:17,708 INFO [nova.compute.resource_tracker] Compute node record created for host1:host1 with uuid: 0f1c719c-152b-4d47-94e6-e19008aeb066
2022-03-15 19:01:17,749 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?in_tree=0f1c719c-152b-4d47-94e6-e19008aeb066" status: 200 len: 26 microversion: 1.14
2022-03-15 19:01:17,758 INFO [placement.requestlog] 127.0.0.1 "POST /placement/resource_providers" status: 200 len: 828 microversion: 1.20
2022-03-15 19:01:17,759 INFO [nova.scheduler.client.report] [req-dc373b92-b5ce-4d12-bbb3-56975957accd] Created resource provider record via placement API for resource provider with UUID 0f1c719c-152b-4d47-94e6-e19008aeb066 and name host1.
2022-03-15 19:01:17,777 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/0f1c719c-152b-4d47-94e6-e19008aeb066/inventories" status: 200 len: 399 microversion: 1.26
2022-03-15 19:01:17,785 INFO [placement.requestlog] 127.0.0.1 "GET /placement/traits?name=in:COMPUTE_DEVICE_TAGGING,COMPUTE_IMAGE_TYPE_RAW,COMPUTE_VOLUME_MULTI_ATTACH,COMPUTE_TRUSTED_CERTS,COMPUTE_VOLUME_ATTACH_WITH_TAG,COMPUTE_NET_ATTACH_INTERFACE,COMPUTE
_NET_ATTACH_INTERFACE_WITH_TAG,COMPUTE_ACCELERATORS,COMPUTE_VOLUME_EXTEND,COMPUTE_NODE" status: 200 len: 292 microversion: 1.6
2022-03-15 19:01:17,801 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/0f1c719c-152b-4d47-94e6-e19008aeb066/traits" status: 200 len: 327 microversion: 1.6
2022-03-15 19:01:17,811 INFO [nova.virt.driver] Loading compute driver 'fake.SmallFakeDriver'
2022-03-15 19:01:17,812 INFO [nova.compute.provider_config] No provider configs found in /etc/nova/provider_config/. If files are present, ensure the Nova process has access.
2022-03-15 19:01:17,817 INFO [nova.service] Starting compute node (version 24.1.0)
2022-03-15 19:01:17,822 WARNING [nova.compute.manager] Compute node host2 not found in the database. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 19:01:17,824 INFO [nova.compute.manager] Looking for unclaimed instances stuck in BUILDING status for nodes managed by this host
2022-03-15 19:01:17,833 WARNING [nova.compute.manager] No compute node record found for host host2. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 19:01:17,835 WARNING [nova.compute.resource_tracker] No compute node record for host2:host2
2022-03-15 19:01:17,838 INFO [nova.compute.resource_tracker] Compute node record created for host2:host2 with uuid: 5850fd21-06ad-4fa2-a22d-f9d2f19f0f89
2022-03-15 19:01:17,857 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?in_tree=5850fd21-06ad-4fa2-a22d-f9d2f19f0f89" status: 200 len: 26 microversion: 1.14
2022-03-15 19:01:17,863 INFO [placement.requestlog] 127.0.0.1 "POST /placement/resource_providers" status: 200 len: 828 microversion: 1.20
2022-03-15 19:01:17,864 INFO [nova.scheduler.client.report] [req-90a19b18-058d-4284-85f1-4b2041adf094] Created resource provider record via placement API for resource provider with UUID 5850fd21-06ad-4fa2-a22d-f9d2f19f0f89 and name host2.
2022-03-15 19:01:17,879 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/5850fd21-06ad-4fa2-a22d-f9d2f19f0f89/inventories" status: 200 len: 399 microversion: 1.26
2022-03-15 19:01:17,887 INFO [placement.requestlog] 127.0.0.1 "GET /placement/traits?name=in:COMPUTE_DEVICE_TAGGING,COMPUTE_IMAGE_TYPE_RAW,COMPUTE_VOLUME_MULTI_ATTACH,COMPUTE_TRUSTED_CERTS,COMPUTE_VOLUME_ATTACH_WITH_TAG,COMPUTE_NET_ATTACH_INTERFACE,COMPUTE_NET_ATTACH_INTERFACE_WITH_TAG,COMPUTE_ACCELERATORS,COMPUTE_VOLUME_EXTEND,COMPUTE_NODE" status: 200 len: 292 microversion: 1.6
2022-03-15 19:01:17,902 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/5850fd21-06ad-4fa2-a22d-f9d2f19f0f89/traits" status: 200 len: 327 microversion: 1.6
2022-03-15 19:01:17,959 INFO [nova.api.openstack.requestlog] 127.0.0.1 "POST /v2.1/os-server-groups" status: 200 len: 210 microversion: 2.90 time: 0.052975
2022-03-15 19:01:17,965 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/images/detail" status: 200 len: 5173 microversion: 2.35 time: 0.002477
2022-03-15 19:01:17,981 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/flavors/detail" status: 200 len: 2605 microversion: 2.90 time: 0.013769
2022-03-15 19:01:18,133 INFO [nova.api.openstack.requestlog] 127.0.0.1 "POST /v2.1/servers" status: 202 len: 414 microversion: 2.90 time: 0.149111
2022-03-15 19:01:18,212 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers" status: 200 len: 685 microversion: 2.90 time: 0.075623
2022-03-15 19:01:18,221 ERROR [nova.scheduler.utils] ServerGroupAntiAffinityFilter not configured
2022-03-15 19:01:18,222 ERROR [nova.conductor.manager] Failed to schedule instances
Traceback (most recent call last):
File "/home/ubuntu/nova/nova/conductor/manager.py", line 1546, in schedule_and_build_instances
host_lists = self._schedule_instances(context, request_specs[0],
File "/home/ubuntu/nova/nova/conductor/manager.py", line 904, in _schedule_instances
scheduler_utils.setup_instance_group(context, request_spec)
File "/home/ubuntu/nova/nova/scheduler
/utils.py", line 1195, in setup_instance_group
group_info = _get_group_details(context, instance_uuid, group_hosts)
File "/home/ubuntu/nova/nova/scheduler/utils.py", line 1121, in _get_group_details
raise exception.UnsupportedPolicyException(reason=msg)
nova.exception.UnsupportedPolicyException: ServerGroup policy is not supported: ServerGroupAntiAffinityFilter not configured
2022-03-15 19:01:18,271 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/020256b6-4fa4-4621-b75d-c6b3e4bf3005" status: 200 len: 1807 microversion: 2.90 time: 0.056206
2022-03-15 19:01:18,304 WARNING [nova.scheduler.utils] Failed to compute_task_build_instances: ServerGroup policy is not supported: ServerGroupAntiAffinityFilter not configured
2022-03-15 19:01:18,304 WARNING [nova.scheduler.utils] Setting instance to ERROR state.
2022-03-15 19:01:18,587 WARNING [nova.scheduler.utils] Failed to compute_task_build_instances: ServerGroup policy is not supported: ServerGroupAntiAffinityFilter not configured
2022-03-15 19:01:18,587 WARNING [nova.scheduler.utils] Setting instance to ERROR state.
2022-03-15 19:01:18,870 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/020256b6-4fa4-4621-b75d-c6b3e4bf3005" status: 200 len: 1953 microversion: 2.90 time: 0.091536
2022-03-15 19:01:19,420 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/020256b6-4fa4-4621-b75d-c6b3e4bf3005" status: 200 len: 1953 microversion: 2.90 time: 0.044425
2022-03-15 19:01:19,973 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/020256b6-4fa4-4621-b75d-c6b3e4bf3005" status: 200 len: 1953 microversion: 2.90 time: 0.046983
2022-03-15 19:01:20,524 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/020256b6-4fa4-4621-b75d-c6b3e4bf3005" status: 200 len: 1953 microversion: 2.90 time: 0.045281
2022-03-15 19:01:21,075 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/020256b6-4fa4-4621-b75d-c6b3e4bf3005" status: 200 len: 1953 microversion: 2.90 time: 0.046679
2022-03-15 19:01:21,625 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/020256b6-4fa4-4621-b75d-c6b3e4bf3005" status: 200 len: 1953 microversion: 2.90 time: 0.043620
2022-03-15 19:01:22,162 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/020256b6-4fa4-4621-b75d-c6b3e4bf3005" status: 200 len: 1953 microversion: 2.90 time: 0.031302
2022-03-15 19:01:22,695 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/020256b6-4fa4-4621-b75d-c6b3e4bf3005" status: 200 len: 1953 microversion: 2.90 time: 0.028765
2022-03-15 19:01:23,231 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/020256b6-4fa4-4621-b75d-c6b3e4bf3005" status: 200 len: 1953 microversion: 2.90 time: 0.031191
==============================
Failed 1 tests - output below:
==============================
nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create
-----------------------------------------------------------------------------------------------------------------
Captured traceback:
~~~~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/nova/tests/functional/regressions/test_bug_1781710.py", line 113, in test_anti_affinity_multi_create
server = self._wait_for_state_change(server, 'ACTIVE')
File "/home/ubuntu/nova/nova/tests/functional/integrated_helpers.py", line 144, in _wait_for_state_change
return self._wait_for_server_parameter(
File "/home/ubuntu/nova/nova/tests/functional/integrated_helpers.py", line 136, in _wait_for_server_parameter
self.fail('Wait for state change failed, '
File "/usr/lib/python3.9/unittest/case.py", line 670, in fail
raise self.failureException(msg)
AssertionError: Wait for state change failed, expected_params={'status': 'ACTIVE'}, server={'id': '020256b6-4fa4-4621-b75d-c6b3e4bf3005', 'name': 'rmdfhwajwefqofvmknuo-2', 'status': 'ERROR', 'tenant_id': '6f70656e737461636b20342065766572', 'user_id': 'fake', 'metadata': {}, 'hostId': '', 'image': {'id': '155d900f-4e14-4e4c-a73d-069cbf4541e6', 'links': [{'rel': 'bookmark', 'href': 'http://3b0b4d72-b042-4a86-859a-459d5e388023/images/155d900f-4e14-4e4c-a73d-069cbf4541e6'}]}, 'flavor': {'vcpus': 1, 'ram': 512, 'disk': 1, 'ephemeral': 0, 'swap': 0, 'original_name': 'm1.tiny', 'extra_specs': {}}, 'created': '2022-03-15T19:01:18Z', 'updated': '2022-03-15T19:01:18Z', 'addresses': {}, 'accessIPv4': '', 'accessIPv6': '', 'links': [{'rel': 'self', 'href': 'http://3b0b4d72-b042-4a86-859a-459d5e388023/v2.1/servers/020256b6-4fa4-4621-b75d-c6b3e4bf3005'}, {'rel': 'bookmark', 'href': 'http://3b0b4d72-b042-4a86-859a-459d5e388023/servers/020256b6-4fa4-4621-b75d-c6b3e4bf3005'}], 'OS-DCF:diskConfig': 'MANUAL', 'fault': {'code': 400, 'created': '2022-03-15T19:01:18Z', 'message': 'ServerGroup policy is not supported: ServerGroupAntiAffinityFilter not configured'}, 'OS-EXT-AZ:availability_zone': '', 'config_drive': '', 'key_name': None, 'OS-SRV-USG:launched_at': None, 'OS-SRV-USG:terminated_at': None, 'OS-EXT-SRV-ATTR:host': None, 'OS-EXT-SRV-ATTR:instance_name': 'instance-00000002', 'OS-EXT-SRV-ATTR:hypervisor_hostname': None, 'OS-EXT-SRV-ATTR:reservation_id': 'r-ymqz7qid', 'OS-EXT-SRV-ATTR:launch_index': 1, 'OS-EXT-SRV-ATTR:hostname': 'rmdfhwajwefqofvmknuo-2', 'OS-EXT-SRV-ATTR:kernel_id': '', 'OS-EXT-SRV-ATTR:ramdisk_id': '', 'OS-EXT-SRV-ATTR:root_device_name': None, 'OS-EXT-SRV-ATTR:user_data': None, 'OS-EXT-STS:task_state': None, 'OS-EXT-STS:vm_state': 'error', 'OS-EXT-STS:power_state': 0, 'os-extended-volumes:volumes_attached': [], 'host_status': '', 'locked': False, 'locked_reason': None, 'description': None, 'tags': [], 'trusted_image_certificates': None, 'server_groups': ['2a90e75f-a87f-445c-ac4e-64e3873adb95']}
Captured pythonlogging:
~~~~~~~~~~~~~~~~~~~~~~
2022-03-15 19:01:17,091 WARNING [oslo_policy.policy] JSON formatted policy_file support is deprecated since Victoria release. You need to use YAML format which will be default in future. You can use ``oslopolicy-convert-json-to-yaml`` tool to convert existing JSON-formatted policy file to YAML-formatted in backward compatible way: https://docs.openstack.org/oslo.policy/latest/cli/oslopolicy-convert-json-to-yaml.html.
2022-03-15 19:01:17,093 WARNING [oslo_policy.policy] JSON formatted policy_file support is deprecated since Victoria release. You need to use YAML format which will be default in future. You can use ``oslopolicy-convert-json-to-yaml`` tool to convert existing JSON-formatted policy file to YAML-formatted in backward compatible way: https://docs.openstack.org/oslo.policy/latest/cli/oslopolicy-convert-json-to-yaml.html.
2022-03-15 19:01:17,096 WARNING [oslo_policy.policy] Policy Rules ['os_compute_api:extensions', 'os_compute_api:os-floating-ip-pools', 'os_compute_api:os-quota-sets:defaults', 'os_compute_api:os-availability-zone:list', 'os_compute_api:limits', 'system_admin_api', 'system_reader_api', 'project_admin_api', 'project_member_api', 'project_reader_api', 'system_admin_or_owner', 'system_or_project_reader', 'os_compute_api:limits:other_project', 'os_compute_api:os-lock-server:unlock:unlock_override', 'os_compute_api:servers:create:zero_disk_flavor', 'compute:servers:resize:cross_cell'] specified in policy files are the same as the defaults provided by the service. You can remove these rules from policy files which will make maintenance easier. You can detect these redundant rules by ``oslopolicy-list-redundant`` tool also.
2022-03-15 19:01:17,138 WARNING [placement.db_api] TransactionFactory already started, not reconfiguring.
2022-03-15 19:01:17,592 INFO [nova.service] Starting conductor node (version 24.1.0)
2022-03-15 19:01:17,634 INFO [nova.service] Starting scheduler node (version 24.1.0)
2022-03-15 19:01:17,656 INFO [nova.virt.driver] Loading compute driver 'fake.SmallFakeDriver'
2022-03-15 19:01:17,657 INFO [nova.compute.provider_config] No provider configs found in /etc/nova/provider_config/. If files are present, ensure the Nova process has access.
2022-03-15 19:01:17,663 INFO [nova.service] Starting compute node (version 24.1.0)
2022-03-15 19:01:17,683 WARNING [nova.compute.manager] Compute node host1 not found in the database. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 19:01:17,688 INFO [nova.compute.manager] Looking for unclaimed instances stuck in BUILDING status for nodes managed by this host
2022-03-15 19:01:17,700 WARNING [nova.compute.manager] No compute node record found for host host1. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 19:01:17,704 WARNING [nova.compute.resource_tracker] No compute node record for host1:host1
2022-03-15 19:01:17,708 INFO [nova.compute.resource_tracker] Compute node record created for host1:host1 with uuid: 0f1c719c-152b-4d47-94e6-e19008aeb066
2022-03-15 19:01:17,749 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?in_tree=0f1c719c-152b-4d47-94e6-e19008aeb066" status: 200 len: 26 microversion: 1.14
2022-03-15 19:01:17,758 INFO [placement.requestlog] 127.0.0.1 "POST /placement/resource_providers" status: 200 len: 828 microversion: 1.20
2022-03-15 19:01:17,759 INFO [nova.scheduler.client.report] [req-dc373b92-b5ce-4d12-bbb3-56975957accd] Created resource provider record via placement API for resource provider with UUID 0f1c719c-152b-4d47-94e6-e19008aeb066 and name host1.
2022-03-15 19:01:17,777 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/0f1c719c-152b-4d47-94e6-e19008aeb066/inventories" status: 200 len: 399 microversion: 1.26
2022-03-15 19:01:17,785 INFO [placement.requestlog] 127.0.0.1 "GET /placement/traits?name=in:COMPUTE_DEVICE_TAGGING,COMPUTE_IMAGE_TYPE_RAW,COMPUTE_VOLUME_MULTI_ATTACH,COMPUTE_TRUSTED_CERTS,COMPUTE_VOLUME_ATTACH_WITH_TAG,COMPUTE_NET_ATTACH_INTERFACE,COMPUTE
_NET_ATTACH_INTERFACE_WITH_TAG,COMPUTE_ACCELERATORS,COMPUTE_VOLUME_EXTEND,COMPUTE_NODE" status: 200 len: 292 microversion: 1.6
2022-03-15 19:01:17,801 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/0f1c719c-152b-4d47-94e6-e19008aeb066/traits" status: 200 len: 327 microversion: 1.6
2022-03-15 19:01:17,811 INFO [nova.virt.driver] Loading compute driver 'fake.SmallFakeDriver'
2022-03-15 19:01:17,812 INFO [nova.compute.provider_config] No provider configs found in /etc/nova/provider_config/. If files are present, ensure the Nova process has access.
2022-03-15 19:01:17,817 INFO [nova.service] Starting compute node (version 24.1.0)
2022-03-15 19:01:17,822 WARNING [nova.compute.manager] Compute node host2 not found in the database. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 19:01:17,824 INFO [nova.compute.manager] Looking for unclaimed instances stuck in BUILDING status for nodes managed by this host
2022-03-15 19:01:17,833 WARNING [nova.compute.manager] No compute node record found for host host2. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 19:01:17,835 WARNING [nova.compute.resource_tracker] No compute node record for host2:host2
2022-03-15 19:01:17,838 INFO [nova.compute.resource_tracker] Compute node record created for host2:host2 with uuid: 5850fd21-06ad-4fa2-a22d-f9d2f19f0f89
2022-03-15 19:01:17,857 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?in_tree=5850fd21-06ad-4fa2-a22d-f9d2f19f0f89" status: 200 len: 26 microversion: 1.14
2022-03-15 19:01:17,863 INFO [placement.requestlog] 127.0.0.1 "POST /placement/resource_providers" status: 200 len: 828 microversion: 1.20
2022-03-15 19:01:17,864 INFO [nova.scheduler.client.report] [req-90a19b18-058d-4284-85f1-4b2041adf094] Created resource provider record via placement API for resource provider with UUID 5850fd21-06ad-4fa2-a22d-f9d2f19f0f89 and name host2.
2022-03-15 19:01:17,879 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/5850fd21-06ad-4fa2-a22d-f9d2f19f0f89/inventories" status: 200 len: 399 microversion: 1.26
2022-03-15 19:01:17,887 INFO [placement.requestlog] 127.0.0.1 "GET /placement/traits?name=in:COMPUTE_DEVICE_TAGGING,COMPUTE_IMAGE_TYPE_RAW,COMPUTE_VOLUME_MULTI_ATTACH,COMPUTE_TRUSTED_CERTS,COMPUTE_VOLUME_ATTACH_WITH_TAG,COMPUTE_NET_ATTACH_INTERFACE,COMPUTE_NET_ATTACH_INTERFACE_WITH_TAG,COMPUTE_ACCELERATORS,COMPUTE_VOLUME_EXTEND,COMPUTE_NODE" status: 200 len: 292 microversion: 1.6
2022-03-15 19:01:17,902 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/5850fd21-06ad-4fa2-a22d-f9d2f19f0f89/traits" status: 200 len: 327 microversion: 1.6
2022-03-15 19:01:17,959 INFO [nova.api.openstack.requestlog] 127.0.0.1 "POST /v2.1/os-server-groups" status: 200 len: 210 microversion: 2.90 time: 0.052975
2022-03-15 19:01:17,965 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/images/detail" status: 200 len: 5173 microversion: 2.35 time: 0.002477
2022-03-15 19:01:17,981 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/flavors/detail" status: 200 len: 2605 microversion: 2.90 time: 0.013769
2022-03-15 19:01:18,133 INFO [nova.api.openstack.requestlog] 127.0.0.1 "POST /v2.1/servers" status: 202 len: 414 microversion: 2.90 time: 0.149111
2022-03-15 19:01:18,212 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers" status: 200 len: 685 microversion: 2.90 time: 0.075623
2022-03-15 19:01:18,221 ERROR [nova.scheduler.utils] ServerGroupAntiAffinityFilter not configured
2022-03-15 19:01:18,222 ERROR [nova.conductor.manager] Failed to schedule instances
Traceback (most recent call last):
File "/home/ubuntu/nova/nova/conductor/manager.py", line 1546, in schedule_and_build_instances
host_lists = self._schedule_instances(context, request_specs[0],
File "/home/ubuntu/nova/nova/conductor/manager.py", line 904, in _schedule_instances
scheduler_utils.setup_instance_group(context, request_spec)
File "/home/ubuntu/nova/nova/scheduler
/utils.py", line 1195, in setup_instance_group
group_info = _get_group_details(context, instance_uuid, group_hosts)
File "/home/ubuntu/nova/nova/scheduler/utils.py", line 1121, in _get_group_details
raise exception.UnsupportedPolicyException(reason=msg)
nova.exception.UnsupportedPolicyException: ServerGroup policy is not supported: ServerGroupAntiAffinityFilter not configured
2022-03-15 19:01:18,271 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/020256b6-4fa4-4621-b75d-c6b3e4bf3005" status: 200 len: 1807 microversion: 2.90 time: 0.056206
2022-03-15 19:01:18,304 WARNING [nova.scheduler.utils] Failed to compute_task_build_instances: ServerGroup policy is not supported: ServerGroupAntiAffinityFilter not configured
2022-03-15 19:01:18,304 WARNING [nova.scheduler.utils] Setting instance to ERROR state.
2022-03-15 19:01:18,587 WARNING [nova.scheduler.utils] Failed to compute_task_build_instances: ServerGroup policy is not supported: ServerGroupAntiAffinityFilter not configured
2022-03-15 19:01:18,587 WARNING [nova.scheduler.utils] Setting instance to ERROR state.
2022-03-15 19:01:18,870 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/020256b6-4fa4-4621-b75d-c6b3e4bf3005" status: 200 len: 1953 microversion: 2.90 time: 0.091536
2022-03-15 19:01:19,420 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/020256b6-4fa4-4621-b75d-c6b3e4bf3005" status: 200 len: 1953 microversion: 2.90 time: 0.044425
2022-03-15 19:01:19,973 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/020256b6-4fa4-4621-b75d-c6b3e4bf3005" status: 200 len: 1953 microversion: 2.90 time: 0.046983
2022-03-15 19:01:20,524 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/020256b6-4fa4-4621-b75d-c6b3e4bf3005" status: 200 len: 1953 microversion: 2.90 time: 0.045281
2022-03-15 19:01:21,075 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/020256b6-4fa4-4621-b75d-c6b3e4bf3005" status: 200 len: 1953 microversion: 2.90 time: 0.046679
2022-03-15 19:01:21,625 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/020256b6-4fa4-4621-b75d-c6b3e4bf3005" status: 200 len: 1953 microversion: 2.90 time: 0.043620
2022-03-15 19:01:22,162 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/020256b6-4fa4-4621-b75d-c6b3e4bf3005" status: 200 len: 1953 microversion: 2.90 time: 0.031302
2022-03-15 19:01:22,695 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/020256b6-4fa4-4621-b75d-c6b3e4bf3005" status: 200 len: 1953 microversion: 2.90 time: 0.028765
2022-03-15 19:01:23,231 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/020256b6-4fa4-4621-b75d-c6b3e4bf3005" status: 200 len: 1953 microversion: 2.90 time: 0.031191
======
Totals
======
Ran: 116 tests in 13.5895 sec.
- Passed: 114
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 1
Sum of execute time for each test: 558.1048 sec.
==============
Worker Balance
==============
- Worker 0 (1 tests) => 0:00:09.478088
- Worker 1 (2 tests) => 0:00:10.653502
- Worker 2 (2 tests) => 0:00:10.155660
- Worker 3 (2 tests) => 0:00:09.222858
- Worker 4 (2 tests) => 0:00:09.223702
- Worker 5 (2 tests) => 0:00:10.640255
- Worker 6 (2 tests) => 0:00:10.186746
- Worker 7 (2 tests) => 0:00:08.652540
- Worker 8 (2 tests) => 0:00:10.197893
- Worker 9 (2 tests) => 0:00:08.564274
- Worker 10 (2 tests) => 0:00:08.227979
- Worker 11 (2 tests) => 0:00:07.682412
- Worker 12 (2 tests) => 0:00:07.352583
- Worker 13 (2 tests) => 0:00:07.788190
- Worker 14 (3 tests) => 0:00:11.320502
- Worker 15 (2 tests) => 0:00:11.473435
- Worker 16 (2 tests) => 0:00:11.473040
- Worker 17 (2 tests) => 0:00:11.589880
- Worker 18 (2 tests) => 0:00:09.569879
- Worker 19 (2 tests) => 0:00:11.562455
- Worker 20 (2 tests) => 0:00:10.469375
- Worker 21 (2 tests) => 0:00:09.768487
- Worker 22 (2 tests) => 0:00:10.016426
- Worker 23 (2 tests) => 0:00:10.914643
- Worker 24 (2 tests) => 0:00:08.171899
- Worker 25 (2 tests) => 0:00:13.171903
- Worker 26 (2 tests) => 0:00:10.660589
- Worker 27 (2 tests) => 0:00:10.636813
- Worker 28 (2 tests) => 0:00:10.295757
- Worker 29 (2 tests) => 0:00:09.768578
- Worker 30 (3 tests) => 0:00:10.428722
- Worker 31 (3 tests) => 0:00:10.542827
- Worker 32 (3 tests) => 0:00:11.492038
- Worker 33 (2 tests) => 0:00:07.959301
- Worker 34 (2 tests) => 0:00:09.842671
- Worker 35 (3 tests) => 0:00:09.852154
- Worker 36 (2 tests) => 0:00:10.958824
- Worker 37 (2 tests) => 0:00:10.764794
- Worker 38 (2 tests) => 0:00:08.319117
- Worker 39 (2 tests) => 0:00:08.153924
- Worker 40 (2 tests) => 0:00:11.033460
- Worker 41 (2 tests) => 0:00:10.039498
- Worker 42 (2 tests) => 0:00:08.292381
- Worker 43 (2 tests) => 0:00:11.168013
- Worker 44 (2 tests) => 0:00:09.964820
- Worker 45 (2 tests) => 0:00:09.586242
- Worker 46 (2 tests) => 0:00:07.518698
- Worker 47 (2 tests) => 0:00:10.315411
- Worker 48 (2 tests) => 0:00:08.213404
- Worker 49 (2 tests) => 0:00:11.647575
- Worker 50 (2 tests) => 0:00:12.222137
- Worker 51 (2 tests) => 0:00:09.983160
- Worker 52 (2 tests) => 0:00:10.770355
- Worker 53 (2 tests) => 0:00:10.117156
- Worker 54 (2 tests) => 0:00:10.060892
- Worker 55 (2 tests) => 0:00:10.074569
ERROR: InvocationError for command /home/ubuntu/nova/.tox/functional-py39/bin/stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions (exited with code 1)
__________________________________________________________________________________ summary __________________________________________________________________________________
ERROR: functional-py39: commands failed
Tox run 15
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/easy_install.py:160: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
functional-py39 develop-inst-noop: /home/ubuntu/nova
functional-py39 installed: alembic==1.7.6,amqp==5.0.9,appdirs==1.4.4,attrs==21.4.0,automaton==2.5.0,autopage==0.5.0,bandit==1.7.4,bcrypt==3.2.0,cachetools==5.0.0,castellan==3.10.1,certifi==2021.10.8,cffi==1.15.0,charset-normalizer==2.0.12,cliff==3.10.1,cmd2==2.4.0,colorama==0.4.4,coverage==6.3.2,cryptography==36.0.1,cursive==0.2.2,ddt==1.4.4,debtcollector==2.4.0,decorator==5.1.1,dnspython==2.1.0,dogpile.cache==1.1.5,eventlet==0.33.0,extras==1.0.0,fasteners==0.17.3,fixtures==3.0.0,flake8==3.8.4,future==0.18.2,futurist==2.4.0,gabbi==2.4.0,gitdb==4.0.9,GitPython==3.1.27,greenlet==1.1.2,hacking==3.1.0,idna==3.3,iniconfig==1.1.1,iso8601==1.0.2,Jinja2==3.0.3,jmespath==0.10.0,jsonpatch==1.32,jsonpath-rw==1.4.0,jsonpath-rw-ext==1.2.2,jsonpointer==2.2,jsonschema==3.2.0,keystoneauth1==4.5.0,keystonemiddleware==9.4.0,kombu==5.2.4,lxml==4.8.0,Mako==1.1.6,MarkupSafe==2.1.1,mccabe==0.6.1,microversion-parse==1.0.1,mock==4.0.3,msgpack==1.0.3,munch==2.5.0,mypy==0.931,mypy-extensions==0.4.3,netaddr==0.8.0,netifaces==0.11.0,networkx==2.7.1,-e git+https://review.opendev.org/openstack/nova@d43538712c034023bdb3e25cd7adfdee409ed596#egg=nova,numpy==1.22.3,openstack-placement==6.0.0,openstacksdk==0.61.0,os-brick==5.2.0,os-client-config==2.1.0,os-resource-classes==1.1.0,os-service-types==1.7.0,os-traits==2.7.0,os-vif==2.7.1,os-win==5.6.0,osc-lib==2.5.0,oslo.cache==2.10.1,oslo.concurrency==4.5.0,oslo.config==8.8.0,oslo.context==4.1.0,oslo.db==11.2.0,oslo.i18n==5.1.0,oslo.log==4.7.0,oslo.messaging==12.13.0,oslo.metrics==0.4.0,oslo.middleware==4.5.1,oslo.policy==3.11.0,oslo.privsep==2.7.0,oslo.reports==2.3.0,oslo.rootwrap==6.3.1,oslo.serialization==4.3.0,oslo.service==2.8.0,oslo.upgradecheck==1.5.0,oslo.utils==4.12.2,oslo.versionedobjects==2.6.0,oslotest==4.5.0,osprofiler==3.4.2,ovs==2.16.0,ovsdbapp==1.15.1,packaging==21.3,paramiko==2.8.1,Paste==3.5.0,PasteDeploy==2.1.1,pbr==5.8.1,pluggy==1.0.0,ply==3.11,prettytable==3.2.0,prometheus-client==0.13.1,psutil==5.9.0,psycopg2-binary==2.9.3,py==1.11.0,pycadf==3.1.1,pycodestyle==2.6.0,pycparser==2.21,pydot==1.4.2,pyflakes==2.2.0,pyinotify==0.9.6,PyMySQL==1.0.2,PyNaCl==1.5.0,pyOpenSSL==22.0.0,pyparsing==3.0.7,pyperclip==1.8.2,pyroute2==0.6.6,pyroute2.core==0.6.6,pyroute2.ethtool==0.6.6,pyroute2.ipdb==0.6.6,pyroute2.ipset==0.6.6,pyroute2.ndb==0.6.6,pyroute2.nftables==0.6.6,pyroute2.nslink==0.6.6,pyrsistent==0.18.1,pytest==7.0.1,python-barbicanclient==5.3.0,python-cinderclient==8.3.0,python-dateutil==2.8.2,python-glanceclient==3.6.0,python-ironicclient==4.11.0,python-keystoneclient==4.4.0,python-neutronclient==7.8.0,python-subunit==1.4.0,pytz==2021.3,PyYAML==6.0,repoze.lru==0.7,requests==2.27.1,requests-mock==1.9.3,requestsexceptions==1.4.0,retrying==1.3.3,rfc3986==1.5.0,Routes==2.5.1,simplejson==3.17.6,six==1.16.0,smmap==5.0.0,sortedcontainers==2.4.0,SQLAlchemy==1.4.31,sqlalchemy-migrate==0.13.0,sqlparse==0.4.2,statsd==3.3.0,stestr==3.2.1,stevedore==3.5.0,taskflow==4.6.4,Tempita==0.5.2,tenacity==6.3.1,testresources==2.0.1,testscenarios==0.5.0,testtools==2.5.0,tomli==2.0.1,tooz==2.10.1,types-cryptography==3.3.15,types-enum34==1.1.8,types-ipaddress==1.0.8,types-paramiko==2.8.13,typing_extensions==4.1.1,urllib3==1.26.8,vine==5.0.0,voluptuous==0.12.2,warlock==1.3.3,wcwidth==0.2.5,WebOb==1.8.7,websockify==0.10.0,wrapt==1.13.3,wsgi-intercept==1.9.3,yappi==1.3.3
functional-py39 run-test-pre: PYTHONHASHSEED='1981606179'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
2022-03-15 19:01:41.336 547289 INFO oslo_service.periodic_task [req-cb760fd1-b40f-4764-8283-867e22b5665a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.400 547291 INFO oslo_service.periodic_task [req-6e36e1a4-6dfe-4c27-8b5e-750f1993ad92 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.478 547285 INFO oslo_service.periodic_task [req-7b84d9e2-ae21-4ac9-a730-a58c86c3f911 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.549 547279 INFO oslo_service.periodic_task [req-c9242154-e559-42e8-b7f2-df50d869d402 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.562 547295 INFO oslo_service.periodic_task [req-df8ab478-4474-43f8-8503-977444d5de9f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.566 547287 INFO oslo_service.periodic_task [req-1e1f5330-7eb8-485b-8489-e3c9d017ae12 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.573 547283 INFO oslo_service.periodic_task [req-d2b47436-971b-4368-b35a-de826358e06d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.583 547303 INFO oslo_service.periodic_task [req-fa7e929e-b955-4d4c-b498-c6f551160717 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.589 547313 INFO oslo_service.periodic_task [req-265f61ca-3f2c-42dc-b80f-81ea035be8b4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.604 547317 INFO oslo_service.periodic_task [req-8c2d512b-3b74-4317-ab35-811e4c41ad68 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.608 547297 INFO oslo_service.periodic_task [req-4337b53e-f8a7-4ccd-92c5-129b1e01ec2f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.619 547299 INFO oslo_service.periodic_task [req-b9158a50-5ad2-4018-bc69-f64da7c1c456 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.619 547301 INFO oslo_service.periodic_task [req-2c986aee-2489-43b4-bbb1-9a06c1ee9b65 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.650 547309 INFO oslo_service.periodic_task [req-0d214f36-6d36-4f29-a01d-c187b1d991b5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.662 547359 INFO oslo_service.periodic_task [req-dc5bda19-0cb7-4476-9e2b-24ae80cc2350 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.678 547305 INFO oslo_service.periodic_task [req-9717c5f4-58a9-4aa0-a5e4-f2db78e81cf4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.686 547341 INFO oslo_service.periodic_task [req-23e093ff-3998-44a3-8a5f-3f6b0577ebf8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.687 547311 INFO oslo_service.periodic_task [req-49c9ba7d-9369-4e50-bb7d-e32647b404f7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.721 547293 INFO oslo_service.periodic_task [req-64ec8e8c-503e-4be4-8df9-647c6654f7a6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.729 547339 INFO oslo_service.periodic_task [req-3eace1f6-31b5-494a-9738-7e48d51d5721 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.743 547349 INFO oslo_service.periodic_task [req-fd09ac66-b3c0-4e6f-958d-54be74ec224f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.764 547335 INFO oslo_service.periodic_task [req-a49b7c60-2f42-4fa9-a442-ddb79c32400f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.768 547329 INFO oslo_service.periodic_task [req-74e79244-d4c1-4b35-8b18-6531e02488e5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.779 547351 INFO oslo_service.periodic_task [req-63769714-6b14-475a-b64e-83b72b3fcb09 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.786 547281 INFO oslo_service.periodic_task [req-eaa65596-0e8a-4259-93db-842aad74147b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.797 547307 INFO oslo_service.periodic_task [req-47f5cd3e-810a-4de6-b702-abb0ff54401e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.798 547379 INFO oslo_service.periodic_task [req-e8fb7c90-729e-4432-8b86-d59f8bd5e917 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.831 547337 INFO oslo_service.periodic_task [req-26c07bf7-92a8-438c-af48-eb28075749fa - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.840 547365 INFO oslo_service.periodic_task [req-bd61b433-0f8f-4c5e-9023-4c92c56f1bc4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.846 547357 INFO oslo_service.periodic_task [req-b79c82ca-53fe-4b6d-8a0e-b0f9c843b540 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.852 547323 INFO oslo_service.periodic_task [req-48087be6-c0df-42be-903b-91b89ba67f92 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.876 547331 INFO oslo_service.periodic_task [req-ceae9054-6cdf-40db-8340-d990655d97f5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.887 547373 INFO oslo_service.periodic_task [req-83ba49bd-7674-4c58-b796-c1a91dd144fb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.895 547325 INFO oslo_service.periodic_task [req-a5508ef4-c931-48d0-a06a-ae04b4b25968 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.892 547353 INFO oslo_service.periodic_task [req-045eb414-dc50-494c-ace5-d319660076a6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.892 547367 INFO oslo_service.periodic_task [req-acd055f2-cf54-4b1b-9cb2-3fe692758095 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.908 547390 INFO oslo_service.periodic_task [req-cfd9795c-2d1d-4eda-8dd7-9fde9c2f994f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.934 547327 INFO oslo_service.periodic_task [req-ed15a7fc-8871-496b-8aa6-dabee49bece5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.935 547369 INFO oslo_service.periodic_task [req-d6a13a9e-ff17-4c8b-bc9f-efd7509ad755 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.942 547385 INFO oslo_service.periodic_task [req-8f06ed00-6e5c-47e3-8bf8-97ede3d06e7e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.946 547355 INFO oslo_service.periodic_task [req-0f4d1888-a9a7-47a0-a769-0f5073f6d29e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.983 547321 INFO oslo_service.periodic_task [req-a4713839-cac9-4300-b617-d7cdbe51d0f6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.985 547381 INFO oslo_service.periodic_task [req-b6fec9c7-4b1b-47e0-8316-feb1e7c54cdb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:41.990 547333 INFO oslo_service.periodic_task [req-5792b909-9a85-47c0-b25e-dd91157fa8d5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:42.025 547347 INFO oslo_service.periodic_task [req-51e28bf5-c727-4613-9d69-6778cd9ee556 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:42.031 547388 INFO oslo_service.periodic_task [req-9ab5244a-0762-4977-9a36-8a10eeee6ef4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:42.039 547315 INFO oslo_service.periodic_task [req-0e488ebf-280c-4bd4-9bf5-787a575ba3d4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:42.042 547343 INFO oslo_service.periodic_task [req-8ae24f9c-46cc-4de8-b20b-bbd51a04c62c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:42.055 547371 INFO oslo_service.periodic_task [req-b0703146-c856-422f-8bb0-299cb20c7312 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:42.075 547345 INFO oslo_service.periodic_task [req-13c002c0-b576-49ac-8a72-493e626581ea - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:42.078 547363 INFO oslo_service.periodic_task [req-91aa54ac-fb66-489a-8255-ebb66d420696 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:42.080 547375 INFO oslo_service.periodic_task [req-4503c0d9-6015-4c29-85df-1c8590b57799 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:42.101 547384 INFO oslo_service.periodic_task [req-1b15c6b4-5f1f-4461-89e1-98b6ead8d8ac - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:42.167 547319 INFO oslo_service.periodic_task [req-26f1d4e1-291f-4cc5-948e-7b85ea70ffcb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:42.188 547377 INFO oslo_service.periodic_task [req-5d4e7e36-bd89-4d3a-af83-ee1902db7f5b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:01:42.333 547361 INFO oslo_service.periodic_task [req-fad02a0c-5d8e-4ead-93f0-296387ca3533 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
{3} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.615737s] ... ok
{2} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [1.682606s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.361190s] ... ok
{6} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.344244s] ... ok
{10} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.346182s] ... ok
{12} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.425899s] ... ok
{11} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.409415s] ... ok
{9} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.522264s] ... ok
{7} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.477040s] ... ok
{14} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.472105s] ... ok
{3} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [1.701222s] ... ok
{4} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.443196s] ... ok
{18} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [3.154352s] ... ok
{20} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{26} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.647492s] ... ok
{30} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.982969s] ... ok
{32} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.886683s] ... ok
{17} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [4.534419s] ... ok
{34} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [4.107021s] ... ok
{13} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [4.546741s] ... ok
{38} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.326561s] ... ok
{44} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [4.594910s] ... ok
{19} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [5.119829s] ... ok
{47} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [4.991731s] ... ok
{51} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [4.906377s] ... ok
{50} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.102281s] ... ok
{13} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.835841s] ... ok
{24} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.139423s] ... ok
{48} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [5.025471s] ... ok
{39} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.343644s] ... ok
{42} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.137173s] ... ok
{52} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [5.132738s] ... ok
{40} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.658588s] ... ok
{46} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.274222s] ... ok
{49} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [5.230601s] ... ok
{33} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.493274s] ... ok
{37} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [5.998175s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "security_groups", "security_group_instance_association" and FROM element "instances". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{43} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [6.098632s] ... ok
{41} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.615424s] ... ok
{36} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [6.206629s] ... ok
{29} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [6.479312s] ... ok
{53} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [6.410148s] ... ok
{31} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [6.820128s] ... ok
{27} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [6.580284s] ... ok
{8} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [7.050607s] ... ok
{22} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.780291s] ... ok
{15} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [6.992563s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/hub.py", line 476, in fire_timers
timer()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/timer.py", line 59, in __call__
cb(*args, **kw)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/greenthread.py", line 221, in main
result = function(*args, **kwargs)
File "/home/ubuntu/nova/nova/utils.py", line 655, in context_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/tests/fixtures/nova.py", line 1661, in test_case_id_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9744, in _live_migration_operation
LOG.error("Live Migration failure: %s", e, instance=instance)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9700, in _live_migration_operation
new_xml_str = libvirt_migrate.get_updated_guest_xml(
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 66, in get_updated_guest_xml
xml_doc = _update_vif_xml(xml_doc, migrate_data, get_vif_config)
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 396, in _update_vif_xml
interface_dev.insert(index + 1, address)
TypeError: Argument 'element' has incorrect type (expected lxml.etree._Element, got NoneType)
{16} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [7.079882s] ... ok
{23} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [6.871647s] ... ok
{35} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [7.226118s] ... ok
{55} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [7.097580s] ... ok
{14} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [5.034540s] ... ok
{54} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [7.330685s] ... ok
{6} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [5.726616s] ... ok
{12} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [5.498215s] ... ok
{45} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [7.817177s] ... ok
{28} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [8.044717s] ... ok
{7} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [5.615317s] ... ok
{29} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [1.540936s] ... ok
{26} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [4.345418s] ... ok
{30} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [4.195200s] ... ok
{9} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [5.801164s] ... ok
{10} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [6.004004s] ... ok
{21} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [8.010964s] ... ok
{18} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [4.823634s] ... ok
{2} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [6.766097s] ... ok
{42} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [2.814830s] ... ok
{44} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.617924s] ... ok
{46} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [3.230872s] ... ok
{25} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [8.808805s] ... ok
{34} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [4.433303s] ... ok
{52} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [3.351304s] ... ok
{15} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [2.362502s] ... ok
{0} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.555098s] ... ok
{37} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [3.214952s] ... ok
{5} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [7.439508s] ... ok
{16} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [2.452785s] ... ok
{24} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [4.223661s] ... ok
{33} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [3.791782s] ... ok
{51} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [4.499087s] ... ok
{32} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [5.645507s] ... ok
{47} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [4.830758s] ... ok
{15} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.766757s] ... ok
{50} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [4.886444s] ... ok
{1} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [9.996046s] ... ok
{8} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [3.183231s] ... ok
{49} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.461247s] ... ok
{39} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [4.786265s] ... ok
{38} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [5.718554s] ... ok
{31} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.512402s] ... ok
{48} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [4.959054s] ... ok
{23} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [3.312122s] ... ok
{11} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [8.080307s] ... ok
{41} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [4.165816s] ... ok
{22} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.596703s] ... ok
{2} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [2.246302s] ... ok
{27} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [3.922341s] ... ok
{3} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.725566s] ... ok
{40} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [5.207842s] ... ok
{4} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.559312s] ... ok
{35} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.712413s] ... ok
{36} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [4.812539s] ... ok
{1} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.266496s] ... ok
{17} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [7.081349s] ... ok
{21} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [3.226080s] ... ok
{43} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [5.364412s] ... ok
{4} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [0.806359s] ... ok
{53} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [5.010860s] ... ok
{55} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.414831s] ... ok
{20} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [8.049559s] ... ok
{45} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [4.076799s] ... ok
{13} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [6.881316s] ... ok
{28} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.207743s] ... ok
{54} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [4.682969s] ... ok
{19} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [7.804960s] ... ok
{25} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [3.997413s] ... ok
======
Totals
======
Ran: 116 tests in 13.2318 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 559.8906 sec.
==============
Worker Balance
==============
- Worker 0 (1 tests) => 0:00:09.555098
- Worker 1 (2 tests) => 0:00:11.264145
- Worker 2 (3 tests) => 0:00:10.699709
- Worker 3 (3 tests) => 0:00:11.046142
- Worker 4 (3 tests) => 0:00:11.811840
- Worker 5 (2 tests) => 0:00:09.802850
- Worker 6 (2 tests) => 0:00:08.073295
- Worker 7 (2 tests) => 0:00:08.095103
- Worker 8 (2 tests) => 0:00:10.235044
- Worker 9 (2 tests) => 0:00:08.326229
- Worker 10 (2 tests) => 0:00:08.352796
- Worker 11 (2 tests) => 0:00:10.492645
- Worker 12 (2 tests) => 0:00:07.926564
- Worker 13 (3 tests) => 0:00:12.265723
- Worker 14 (2 tests) => 0:00:07.509460
- Worker 15 (3 tests) => 0:00:10.125329
- Worker 16 (2 tests) => 0:00:09.534758
- Worker 17 (2 tests) => 0:00:11.617817
- Worker 18 (2 tests) => 0:00:07.980268
- Worker 19 (2 tests) => 0:00:12.926204
- Worker 20 (2 tests) => 0:00:11.354539
- Worker 21 (2 tests) => 0:00:11.238559
- Worker 22 (2 tests) => 0:00:10.379197
- Worker 23 (2 tests) => 0:00:10.185492
- Worker 24 (2 tests) => 0:00:09.364374
- Worker 25 (2 tests) => 0:00:12.810849
- Worker 26 (2 tests) => 0:00:07.994095
- Worker 27 (2 tests) => 0:00:10.504241
- Worker 28 (2 tests) => 0:00:12.254674
- Worker 29 (2 tests) => 0:00:08.022766
- Worker 30 (2 tests) => 0:00:08.179620
- Worker 31 (2 tests) => 0:00:10.335544
- Worker 32 (2 tests) => 0:00:09.534043
- Worker 33 (2 tests) => 0:00:09.286432
- Worker 34 (2 tests) => 0:00:08.541330
- Worker 35 (2 tests) => 0:00:10.939511
- Worker 36 (2 tests) => 0:00:11.020593
- Worker 37 (2 tests) => 0:00:09.214110
- Worker 38 (2 tests) => 0:00:10.045937
- Worker 39 (2 tests) => 0:00:10.133421
- Worker 40 (2 tests) => 0:00:10.870044
- Worker 41 (2 tests) => 0:00:09.783032
- Worker 42 (2 tests) => 0:00:07.953483
- Worker 43 (2 tests) => 0:00:11.465640
- Worker 44 (2 tests) => 0:00:08.213854
- Worker 45 (2 tests) => 0:00:11.896485
- Worker 46 (2 tests) => 0:00:08.508288
- Worker 47 (2 tests) => 0:00:09.824257
- Worker 48 (2 tests) => 0:00:09.985831
- Worker 49 (2 tests) => 0:00:09.693323
- Worker 50 (2 tests) => 0:00:09.991042
- Worker 51 (2 tests) => 0:00:09.406962
- Worker 52 (2 tests) => 0:00:08.485143
- Worker 53 (2 tests) => 0:00:11.423084
- Worker 54 (2 tests) => 0:00:12.015030
- Worker 55 (2 tests) => 0:00:11.514427
functional-py39 run-test: commands[1] | stestr slowest
Test id Runtime (s)
------------------------------------------------------------------------------------------------------------------------------------------------------ -----------
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True 9.996
nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid 9.555
nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate 8.809
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True 8.080
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False 8.050
nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute 8.045
nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate 8.011
nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate 7.817
nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host 7.805
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False 7.726
__________________________________________________________________________________ summary __________________________________________________________________________________
functional-py39: commands succeeded
congratulations :)
Tox run 16
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/easy_install.py:160: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
functional-py39 develop-inst-noop: /home/ubuntu/nova
functional-py39 installed: alembic==1.7.6,amqp==5.0.9,appdirs==1.4.4,attrs==21.4.0,automaton==2.5.0,autopage==0.5.0,bandit==1.7.4,bcrypt==3.2.0,cachetools==5.0.0,castellan==3.10.1,certifi==2021.10.8,cffi==1.15.0,charset-normalizer==2.0.12,cliff==3.10.1,cmd2==2.4.0,colorama==0.4.4,coverage==6.3.2,cryptography==36.0.1,cursive==0.2.2,ddt==1.4.4,debtcollector==2.4.0,decorator==5.1.1,dnspython==2.1.0,dogpile.cache==1.1.5,eventlet==0.33.0,extras==1.0.0,fasteners==0.17.3,fixtures==3.0.0,flake8==3.8.4,future==0.18.2,futurist==2.4.0,gabbi==2.4.0,gitdb==4.0.9,GitPython==3.1.27,greenlet==1.1.2,hacking==3.1.0,idna==3.3,iniconfig==1.1.1,iso8601==1.0.2,Jinja2==3.0.3,jmespath==0.10.0,jsonpatch==1.32,jsonpath-rw==1.4.0,jsonpath-rw-ext==1.2.2,jsonpointer==2.2,jsonschema==3.2.0,keystoneauth1==4.5.0,keystonemiddleware==9.4.0,kombu==5.2.4,lxml==4.8.0,Mako==1.1.6,MarkupSafe==2.1.1,mccabe==0.6.1,microversion-parse==1.0.1,mock==4.0.3,msgpack==1.0.3,munch==2.5.0,mypy==0.931,mypy-extensions==0.4.3,netaddr==0.8.0,netifaces==0.11.0,networkx==2.7.1,-e git+https://review.opendev.org/openstack/nova@d43538712c034023bdb3e25cd7adfdee409ed596#egg=nova,numpy==1.22.3,openstack-placement==6.0.0,openstacksdk==0.61.0,os-brick==5.2.0,os-client-config==2.1.0,os-resource-classes==1.1.0,os-service-types==1.7.0,os-traits==2.7.0,os-vif==2.7.1,os-win==5.6.0,osc-lib==2.5.0,oslo.cache==2.10.1,oslo.concurrency==4.5.0,oslo.config==8.8.0,oslo.context==4.1.0,oslo.db==11.2.0,oslo.i18n==5.1.0,oslo.log==4.7.0,oslo.messaging==12.13.0,oslo.metrics==0.4.0,oslo.middleware==4.5.1,oslo.policy==3.11.0,oslo.privsep==2.7.0,oslo.reports==2.3.0,oslo.rootwrap==6.3.1,oslo.serialization==4.3.0,oslo.service==2.8.0,oslo.upgradecheck==1.5.0,oslo.utils==4.12.2,oslo.versionedobjects==2.6.0,oslotest==4.5.0,osprofiler==3.4.2,ovs==2.16.0,ovsdbapp==1.15.1,packaging==21.3,paramiko==2.8.1,Paste==3.5.0,PasteDeploy==2.1.1,pbr==5.8.1,pluggy==1.0.0,ply==3.11,prettytable==3.2.0,prometheus-client==0.13.1,psutil==5.9.0,psycopg2-binary==2.9.3,py==1.11.0,pycadf==3.1.1,pycodestyle==2.6.0,pycparser==2.21,pydot==1.4.2,pyflakes==2.2.0,pyinotify==0.9.6,PyMySQL==1.0.2,PyNaCl==1.5.0,pyOpenSSL==22.0.0,pyparsing==3.0.7,pyperclip==1.8.2,pyroute2==0.6.6,pyroute2.core==0.6.6,pyroute2.ethtool==0.6.6,pyroute2.ipdb==0.6.6,pyroute2.ipset==0.6.6,pyroute2.ndb==0.6.6,pyroute2.nftables==0.6.6,pyroute2.nslink==0.6.6,pyrsistent==0.18.1,pytest==7.0.1,python-barbicanclient==5.3.0,python-cinderclient==8.3.0,python-dateutil==2.8.2,python-glanceclient==3.6.0,python-ironicclient==4.11.0,python-keystoneclient==4.4.0,python-neutronclient==7.8.0,python-subunit==1.4.0,pytz==2021.3,PyYAML==6.0,repoze.lru==0.7,requests==2.27.1,requests-mock==1.9.3,requestsexceptions==1.4.0,retrying==1.3.3,rfc3986==1.5.0,Routes==2.5.1,simplejson==3.17.6,six==1.16.0,smmap==5.0.0,sortedcontainers==2.4.0,SQLAlchemy==1.4.31,sqlalchemy-migrate==0.13.0,sqlparse==0.4.2,statsd==3.3.0,stestr==3.2.1,stevedore==3.5.0,taskflow==4.6.4,Tempita==0.5.2,tenacity==6.3.1,testresources==2.0.1,testscenarios==0.5.0,testtools==2.5.0,tomli==2.0.1,tooz==2.10.1,types-cryptography==3.3.15,types-enum34==1.1.8,types-ipaddress==1.0.8,types-paramiko==2.8.13,typing_extensions==4.1.1,urllib3==1.26.8,vine==5.0.0,voluptuous==0.12.2,warlock==1.3.3,wcwidth==0.2.5,WebOb==1.8.7,websockify==0.10.0,wrapt==1.13.3,wsgi-intercept==1.9.3,yappi==1.3.3
functional-py39 run-test-pre: PYTHONHASHSEED='3259492554'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
2022-03-15 19:02:14.471 548067 INFO oslo_service.periodic_task [req-78a91e9a-8b8f-423c-a41d-98b0c0a8008f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.572 548069 INFO oslo_service.periodic_task [req-aa632ec3-34ae-48a9-9765-71901b1efc3c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.620 548081 INFO oslo_service.periodic_task [req-e2a3ac14-fb8e-40d2-b1ab-57dd7e506c28 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.633 548043 INFO oslo_service.periodic_task [req-083feba8-b112-4aa0-a213-6242421fa3f8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.645 548057 INFO oslo_service.periodic_task [req-50b09694-91f4-4a86-ae9f-5b620ba3a315 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.654 548047 INFO oslo_service.periodic_task [req-29c9cd73-bf01-4cee-a699-544f3c9bf0d4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.656 548087 INFO oslo_service.periodic_task [req-3b83b1d5-eca8-4306-b595-0937f3fda9a1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.690 548093 INFO oslo_service.periodic_task [req-332a647c-f996-4055-855c-943f80a5d023 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.694 548059 INFO oslo_service.periodic_task [req-15c17600-e775-4661-b6ea-c9b186be2ed5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.705 548045 INFO oslo_service.periodic_task [req-69775193-8513-4311-92ff-13b2a526ff88 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.716 548051 INFO oslo_service.periodic_task [req-2a875198-1c45-418b-820a-2e4c0665f160 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.724 548065 INFO oslo_service.periodic_task [req-ad9e2c3a-b9a5-413d-a408-df0aa601d919 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.728 548063 INFO oslo_service.periodic_task [req-f42ce463-ee57-4ba3-83a0-a2e7ebd54c3f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.751 548055 INFO oslo_service.periodic_task [req-c03774a5-f7f7-438f-956e-36f9d4fc4941 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.769 548079 INFO oslo_service.periodic_task [req-c047db93-be22-4996-aa86-3186a6615cd0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.770 548077 INFO oslo_service.periodic_task [req-013601b5-c152-4bc3-959a-a2a75309cdc2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.777 548097 INFO oslo_service.periodic_task [req-98a3c33a-2347-4b30-af7a-908770fc42c7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.783 548075 INFO oslo_service.periodic_task [req-a9b7f599-7e8c-4a29-8396-0dfdd2d69e06 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.797 548129 INFO oslo_service.periodic_task [req-74d84397-a242-4cba-acee-835362e74795 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.800 548113 INFO oslo_service.periodic_task [req-91ce2045-e4db-4cff-b917-a06b0d169041 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.824 548101 INFO oslo_service.periodic_task [req-911bc5aa-6b44-42cd-a9d7-fa749714a784 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.827 548039 INFO oslo_service.periodic_task [req-3f19df2f-b3ec-489c-b08b-6299299b9a99 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.836 548049 INFO oslo_service.periodic_task [req-2fbe7de1-e6a4-437c-87ad-551dbd0d9421 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.837 548109 INFO oslo_service.periodic_task [req-5871fdb1-f720-49e5-b0df-794ce50234be - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.846 548085 INFO oslo_service.periodic_task [req-a41e4b67-96c8-49a4-b7ca-c698500339b4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.857 548091 INFO oslo_service.periodic_task [req-cffb595a-ffbd-4d25-988c-2b3ca87fc832 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.856 548119 INFO oslo_service.periodic_task [req-18d4913c-f947-4206-b6ef-fc7bd87df179 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.866 548123 INFO oslo_service.periodic_task [req-7189b94f-5563-4e6e-b236-0d2803ed0a79 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.868 548071 INFO oslo_service.periodic_task [req-223d62a9-60e7-46ee-944b-848613acbcc7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.872 548083 INFO oslo_service.periodic_task [req-210ea307-a27f-4caf-9584-f251794dbb29 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.874 548107 INFO oslo_service.periodic_task [req-c3d4d6ec-8b36-4cce-a074-a060697e6d97 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.880 548041 INFO oslo_service.periodic_task [req-bca2305b-0822-4d82-95d3-8930b21a2c13 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.883 548127 INFO oslo_service.periodic_task [req-b7e4ae2c-a166-43e0-b1bd-72f3ce3671f8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.884 548133 INFO oslo_service.periodic_task [req-c0ed3635-5aba-4610-af8a-ab30b701aa2e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.906 548073 INFO oslo_service.periodic_task [req-58db947d-f67b-48af-928b-eac8b49707d8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.912 548095 INFO oslo_service.periodic_task [req-68e695b9-44c6-4a8c-90cf-3c2f6d2a63e5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.937 548103 INFO oslo_service.periodic_task [req-b81158ac-22e4-40c9-b39c-2112409c2b6d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.943 548137 INFO oslo_service.periodic_task [req-7d6873b2-bf90-4caf-ac19-47dd0dce5c2a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.977 548135 INFO oslo_service.periodic_task [req-569bf1b7-704f-43bb-9604-3feab10643b5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.980 548139 INFO oslo_service.periodic_task [req-40dd9236-10e7-4d51-948a-326f5e85ba21 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.978 548121 INFO oslo_service.periodic_task [req-2c24b001-58f7-4ffa-ac72-4891f99fe18d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.983 548117 INFO oslo_service.periodic_task [req-cc39ec4c-dff4-48ea-ada1-a80e282fdadb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.995 548150 INFO oslo_service.periodic_task [req-0400123d-dc1b-43af-bd8a-0b834735a531 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:14.996 548089 INFO oslo_service.periodic_task [req-2b556493-6e90-4de4-818d-adf78b70e5af - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:15.018 548053 INFO oslo_service.periodic_task [req-f7631ab3-45d2-446c-a6e3-5fc2a2272d63 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:15.018 548061 INFO oslo_service.periodic_task [req-b4501849-b153-4d7b-977b-bffca38cd10e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:15.044 548111 INFO oslo_service.periodic_task [req-58f68039-c9a2-4497-8d08-df3481be18f4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:15.107 548125 INFO oslo_service.periodic_task [req-0a73dbcf-a4a7-414d-a767-3484f0b83ed7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:15.108 548148 INFO oslo_service.periodic_task [req-9d6b6b3d-1f60-45ab-b528-da98c3085d39 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:15.132 548141 INFO oslo_service.periodic_task [req-492818d1-31e8-4f54-a5a8-bebb82c34a49 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:15.147 548145 INFO oslo_service.periodic_task [req-b679cc18-d440-45ef-bd2d-ad4860c2db88 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:15.159 548143 INFO oslo_service.periodic_task [req-cb18bd32-9fcf-420e-b7f4-dc76bdd9de7f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:15.190 548099 INFO oslo_service.periodic_task [req-5c10cf0a-08ee-42f6-b808-b6662c413780 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:15.237 548131 INFO oslo_service.periodic_task [req-a2ae1cc0-6936-47b0-b181-b1df1614ca95 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:15.300 548105 INFO oslo_service.periodic_task [req-5b10e371-b30c-4812-807c-2dded3ca8a52 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:15.319 548115 INFO oslo_service.periodic_task [req-07126fa2-275c-4314-8558-eb63c0cf4c53 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
{1} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.648934s] ... ok
{14} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.429491s] ... ok
{6} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.382012s] ... ok
{10} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.415414s] ... ok
{12} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.468739s] ... ok
{2} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [2.562584s] ... ok
{13} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.485981s] ... ok
{9} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.599149s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.459745s] ... ok
{7} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.501073s] ... ok
{3} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [3.056063s] ... ok
{21} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{16} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [3.272232s] ... ok
{4} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [3.795933s] ... ok
{28} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.701413s] ... ok
{15} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [4.327649s] ... ok
{40} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [4.101541s] ... ok
{31} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [4.229619s] ... ok
{36} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [4.108199s] ... ok
{8} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [4.441122s] ... ok
{20} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [4.427152s] ... ok
{41} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.239134s] ... ok
{33} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [4.028857s] ... ok
{19} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [4.960193s] ... ok
{48} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [4.783275s] ... ok
{23} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.039353s] ... ok
{55} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [4.939139s] ... ok
{47} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [5.162916s] ... ok
{45} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.278068s] ... ok
{34} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.331726s] ... ok
{49} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.304593s] ... ok
{53} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [5.154736s] ... ok
{43} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [5.225214s] ... ok
{46} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.229824s] ... ok
{27} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [5.839720s] ... ok
{51} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [5.400742s] ... ok
{35} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [5.877761s] ... ok
{39} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.729525s] ... ok
{44} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [6.048164s] ... ok
{42} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [6.171486s] ... ok
{25} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [6.085794s] ... ok
{30} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [6.043313s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "instances" and FROM element "security_groups". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{24} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [6.627650s] ... ok
{26} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [6.526932s] ... ok
{22} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.596123s] ... ok
{54} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [6.418488s] ... ok
{45} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.563787s] ... ok
{37} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [6.873736s] ... ok
{38} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [6.432281s] ... ok
{18} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [7.070398s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/hub.py", line 476, in fire_timers
timer()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/timer.py", line 59, in __call__
cb(*args, **kw)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/greenthread.py", line 221, in main
result = function(*args, **kwargs)
File "/home/ubuntu/nova/nova/utils.py", line 655, in context_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/tests/fixtures/nova.py", line 1661, in test_case_id_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9744, in _live_migration_operation
LOG.error("Live Migration failure: %s", e, instance=instance)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9700, in _live_migration_operation
new_xml_str = libvirt_migrate.get_updated_guest_xml(
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 66, in get_updated_guest_xml
xml_doc = _update_vif_xml(xml_doc, migrate_data, get_vif_config)
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 396, in _update_vif_xml
interface_dev.insert(index + 1, address)
TypeError: Argument 'element' has incorrect type (expected lxml.etree._Element, got NoneType)
{52} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [6.725692s] ... ok
{14} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [4.999484s] ... ok
{50} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [6.983553s] ... ok
{17} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [7.316167s] ... ok
{32} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [7.360803s] ... ok
{12} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [5.132640s] ... ok
{21} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [4.348184s] ... ok
{41} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [3.228202s] ... ok
{28} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [4.028895s] ... ok
{49} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [2.418621s] ... ok
{36} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [3.517960s] ... ok
{24} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [1.609797s] ... ok
{13} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [5.683748s] ... ok
{47} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [2.909896s] ... ok
{7} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [5.443428s] ... ok
{14} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [1.233009s] ... ok
{29} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [8.478251s] ... ok
{40} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [4.387696s] ... ok
{6} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [6.334634s] ... ok
{16} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [5.319432s] ... ok
{48} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [3.862562s] ... ok
{5} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [6.487536s] ... ok
{42} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [2.775309s] ... ok
{27} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.393638s] ... ok
{0} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [9.334896s] ... ok
{11} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [9.156944s] ... ok
{2} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [7.017976s] ... ok
{20} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [5.063255s] ... ok
{26} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [2.987266s] ... ok
{55} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [4.577974s] ... ok
{34} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [4.333778s] ... ok
{46} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [4.125094s] ... ok
{22} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [3.140412s] ... ok
{42} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.857417s] ... ok
{33} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [5.402089s] ... ok
{43} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.454283s] ... ok
{18} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [2.978882s] ... ok
{31} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [5.789448s] ... ok
{10} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.763938s] ... ok
{39} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.282772s] ... ok
{9} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.795373s] ... ok
{25} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [4.008486s] ... ok
{3} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [7.370353s] ... ok
{53} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [4.819630s] ... ok
{1} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [8.621129s] ... ok
{17} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [2.983564s] ... ok
{4} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [6.805571s] ... ok
{51} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [4.759972s] ... ok
{46} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.730482s] ... ok
{35} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [4.826345s] ... ok
{30} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [4.430313s] ... ok
{15} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.868423s] ... ok
{23} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [5.965458s] ... ok
{44} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [4.925864s] ... ok
{8} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [6.703828s] ... ok
{37} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [4.381497s] ... ok
{45} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.508267s] ... ok
{32} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [3.994566s] ... ok
{54} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [4.968690s] ... ok
{11} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [2.340297s] ... ok
{29} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.432448s] ... ok
{38} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [5.003592s] ... ok
{50} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [5.016111s] ... ok
{19} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [7.274906s] ... ok
{40} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [4.319221s] ... ok
{52} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [6.155808s] ... ok
======
Totals
======
Ran: 116 tests in 13.5719 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 555.0423 sec.
==============
Worker Balance
==============
- Worker 0 (1 tests) => 0:00:09.334896
- Worker 1 (2 tests) => 0:00:10.272289
- Worker 2 (2 tests) => 0:00:09.584746
- Worker 3 (2 tests) => 0:00:10.428108
- Worker 4 (2 tests) => 0:00:10.602431
- Worker 5 (2 tests) => 0:00:08.949562
- Worker 6 (2 tests) => 0:00:08.719086
- Worker 7 (2 tests) => 0:00:07.946517
- Worker 8 (2 tests) => 0:00:11.146840
- Worker 9 (2 tests) => 0:00:10.397249
- Worker 10 (2 tests) => 0:00:10.182484
- Worker 11 (2 tests) => 0:00:11.499149
- Worker 12 (2 tests) => 0:00:07.604371
- Worker 13 (2 tests) => 0:00:08.172518
- Worker 14 (3 tests) => 0:00:08.666074
- Worker 15 (2 tests) => 0:00:11.197100
- Worker 16 (2 tests) => 0:00:08.592659
- Worker 17 (2 tests) => 0:00:10.300960
- Worker 18 (2 tests) => 0:00:10.051828
- Worker 19 (2 tests) => 0:00:12.239340
- Worker 20 (2 tests) => 0:00:09.491069
- Worker 21 (2 tests) => 0:00:07.739077
- Worker 22 (2 tests) => 0:00:09.738789
- Worker 23 (2 tests) => 0:00:11.006664
- Worker 24 (2 tests) => 0:00:08.238821
- Worker 25 (2 tests) => 0:00:10.096307
- Worker 26 (2 tests) => 0:00:09.516071
- Worker 27 (2 tests) => 0:00:09.234944
- Worker 28 (2 tests) => 0:00:07.733439
- Worker 29 (2 tests) => 0:00:11.912706
- Worker 30 (2 tests) => 0:00:10.474525
- Worker 31 (2 tests) => 0:00:10.020107
- Worker 32 (2 tests) => 0:00:11.357016
- Worker 33 (2 tests) => 0:00:09.432240
- Worker 34 (2 tests) => 0:00:09.667282
- Worker 35 (2 tests) => 0:00:10.705209
- Worker 36 (2 tests) => 0:00:07.627060
- Worker 37 (2 tests) => 0:00:11.256914
- Worker 38 (2 tests) => 0:00:11.437279
- Worker 39 (2 tests) => 0:00:10.014529
- Worker 40 (3 tests) => 0:00:12.810543
- Worker 41 (2 tests) => 0:00:07.468673
- Worker 42 (3 tests) => 0:00:09.807310
- Worker 43 (2 tests) => 0:00:09.680747
- Worker 44 (2 tests) => 0:00:10.976027
- Worker 45 (3 tests) => 0:00:11.353056
- Worker 46 (3 tests) => 0:00:10.088115
- Worker 47 (2 tests) => 0:00:08.074261
- Worker 48 (2 tests) => 0:00:08.648097
- Worker 49 (2 tests) => 0:00:07.725137
- Worker 50 (2 tests) => 0:00:12.000881
- Worker 51 (2 tests) => 0:00:10.162608
- Worker 52 (2 tests) => 0:00:12.882702
- Worker 53 (2 tests) => 0:00:09.976386
- Worker 54 (2 tests) => 0:00:11.388644
- Worker 55 (2 tests) => 0:00:09.518845
functional-py39 run-test: commands[1] | stestr slowest
Test id Runtime (s)
------------------------------------------------------------------------------------------------------------------------------------------ -----------
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True 9.335
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 9.157
nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid 8.621
nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change 8.478
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False 7.795
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.764
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True 7.370
nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 7.361
nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback 7.316
nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host 7.275
__________________________________________________________________________________ summary __________________________________________________________________________________
functional-py39: commands succeeded
congratulations :)
Tox run 17
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/easy_install.py:160: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
functional-py39 develop-inst-noop: /home/ubuntu/nova
functional-py39 installed: alembic==1.7.6,amqp==5.0.9,appdirs==1.4.4,attrs==21.4.0,automaton==2.5.0,autopage==0.5.0,bandit==1.7.4,bcrypt==3.2.0,cachetools==5.0.0,castellan==3.10.1,certifi==2021.10.8,cffi==1.15.0,charset-normalizer==2.0.12,cliff==3.10.1,cmd2==2.4.0,colorama==0.4.4,coverage==6.3.2,cryptography==36.0.1,cursive==0.2.2,ddt==1.4.4,debtcollector==2.4.0,decorator==5.1.1,dnspython==2.1.0,dogpile.cache==1.1.5,eventlet==0.33.0,extras==1.0.0,fasteners==0.17.3,fixtures==3.0.0,flake8==3.8.4,future==0.18.2,futurist==2.4.0,gabbi==2.4.0,gitdb==4.0.9,GitPython==3.1.27,greenlet==1.1.2,hacking==3.1.0,idna==3.3,iniconfig==1.1.1,iso8601==1.0.2,Jinja2==3.0.3,jmespath==0.10.0,jsonpatch==1.32,jsonpath-rw==1.4.0,jsonpath-rw-ext==1.2.2,jsonpointer==2.2,jsonschema==3.2.0,keystoneauth1==4.5.0,keystonemiddleware==9.4.0,kombu==5.2.4,lxml==4.8.0,Mako==1.1.6,MarkupSafe==2.1.1,mccabe==0.6.1,microversion-parse==1.0.1,mock==4.0.3,msgpack==1.0.3,munch==2.5.0,mypy==0.931,mypy-extensions==0.4.3,netaddr==0.8.0,netifaces==0.11.0,networkx==2.7.1,-e git+https://review.opendev.org/openstack/nova@d43538712c034023bdb3e25cd7adfdee409ed596#egg=nova,numpy==1.22.3,openstack-placement==6.0.0,openstacksdk==0.61.0,os-brick==5.2.0,os-client-config==2.1.0,os-resource-classes==1.1.0,os-service-types==1.7.0,os-traits==2.7.0,os-vif==2.7.1,os-win==5.6.0,osc-lib==2.5.0,oslo.cache==2.10.1,oslo.concurrency==4.5.0,oslo.config==8.8.0,oslo.context==4.1.0,oslo.db==11.2.0,oslo.i18n==5.1.0,oslo.log==4.7.0,oslo.messaging==12.13.0,oslo.metrics==0.4.0,oslo.middleware==4.5.1,oslo.policy==3.11.0,oslo.privsep==2.7.0,oslo.reports==2.3.0,oslo.rootwrap==6.3.1,oslo.serialization==4.3.0,oslo.service==2.8.0,oslo.upgradecheck==1.5.0,oslo.utils==4.12.2,oslo.versionedobjects==2.6.0,oslotest==4.5.0,osprofiler==3.4.2,ovs==2.16.0,ovsdbapp==1.15.1,packaging==21.3,paramiko==2.8.1,Paste==3.5.0,PasteDeploy==2.1.1,pbr==5.8.1,pluggy==1.0.0,ply==3.11,prettytable==3.2.0,prometheus-client==0.13.1,psutil==5.9.0,psycopg2-binary==2.9.3,py==1.11.0,pycadf==3.1.1,pycodestyle==2.6.0,pycparser==2.21,pydot==1.4.2,pyflakes==2.2.0,pyinotify==0.9.6,PyMySQL==1.0.2,PyNaCl==1.5.0,pyOpenSSL==22.0.0,pyparsing==3.0.7,pyperclip==1.8.2,pyroute2==0.6.6,pyroute2.core==0.6.6,pyroute2.ethtool==0.6.6,pyroute2.ipdb==0.6.6,pyroute2.ipset==0.6.6,pyroute2.ndb==0.6.6,pyroute2.nftables==0.6.6,pyroute2.nslink==0.6.6,pyrsistent==0.18.1,pytest==7.0.1,python-barbicanclient==5.3.0,python-cinderclient==8.3.0,python-dateutil==2.8.2,python-glanceclient==3.6.0,python-ironicclient==4.11.0,python-keystoneclient==4.4.0,python-neutronclient==7.8.0,python-subunit==1.4.0,pytz==2021.3,PyYAML==6.0,repoze.lru==0.7,requests==2.27.1,requests-mock==1.9.3,requestsexceptions==1.4.0,retrying==1.3.3,rfc3986==1.5.0,Routes==2.5.1,simplejson==3.17.6,six==1.16.0,smmap==5.0.0,sortedcontainers==2.4.0,SQLAlchemy==1.4.31,sqlalchemy-migrate==0.13.0,sqlparse==0.4.2,statsd==3.3.0,stestr==3.2.1,stevedore==3.5.0,taskflow==4.6.4,Tempita==0.5.2,tenacity==6.3.1,testresources==2.0.1,testscenarios==0.5.0,testtools==2.5.0,tomli==2.0.1,tooz==2.10.1,types-cryptography==3.3.15,types-enum34==1.1.8,types-ipaddress==1.0.8,types-paramiko==2.8.13,typing_extensions==4.1.1,urllib3==1.26.8,vine==5.0.0,voluptuous==0.12.2,warlock==1.3.3,wcwidth==0.2.5,WebOb==1.8.7,websockify==0.10.0,wrapt==1.13.3,wsgi-intercept==1.9.3,yappi==1.3.3
functional-py39 run-test-pre: PYTHONHASHSEED='424334100'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
2022-03-15 19:02:47.516 548734 INFO oslo_service.periodic_task [req-0151d16a-4ffb-42ba-a9fc-4e3b669d4c42 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.689 548784 INFO oslo_service.periodic_task [req-30c728aa-6f9a-4798-a4ad-e308ad8b02ff - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.699 548736 INFO oslo_service.periodic_task [req-4b89b74d-a0d0-4ee5-8529-e4ca97666b74 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.710 548730 INFO oslo_service.periodic_task [req-83b3bde5-89ba-4ccd-8c9a-4f1fb8f6489c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.700 548724 INFO oslo_service.periodic_task [req-019867c5-322c-4103-9c38-d5a9bd1c8255 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.725 548778 INFO oslo_service.periodic_task [req-2f280600-3bd2-4f2e-ad72-1b67fa509a77 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.746 548746 INFO oslo_service.periodic_task [req-26f48a0e-fb77-496f-92ea-8f9f50613c3e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.758 548748 INFO oslo_service.periodic_task [req-1325a6ff-6ca6-4acb-a886-dc02f99e9d70 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.771 548776 INFO oslo_service.periodic_task [req-04e2b1bd-046e-41d8-9749-2b17a6425750 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.789 548752 INFO oslo_service.periodic_task [req-9e5a4314-e4ed-4de3-aac9-fa84d9b5c01e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.796 548722 INFO oslo_service.periodic_task [req-94e90960-908f-4cd8-b6a8-c68c9ea89e38 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.798 548744 INFO oslo_service.periodic_task [req-19a2b982-daa3-4ea8-8f6a-5386f2bf95e8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.799 548726 INFO oslo_service.periodic_task [req-f172ab48-eadf-4718-8304-837463582a83 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.812 548750 INFO oslo_service.periodic_task [req-30afa1c4-efa1-4fb1-8ef3-9daaaa6d8c44 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.829 548768 INFO oslo_service.periodic_task [req-fd5b777c-6f0c-4c2a-921f-37d79c01cf4a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.833 548762 INFO oslo_service.periodic_task [req-faa01be4-56c9-4262-b2bd-84e0111d3927 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.845 548742 INFO oslo_service.periodic_task [req-3bd0b8f9-d9b0-4e1c-9137-3424fc5dd6b0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.846 548804 INFO oslo_service.periodic_task [req-11952e79-c886-4a35-ae4d-4db5754a0732 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.880 548728 INFO oslo_service.periodic_task [req-6e9aa73a-3254-4d86-95fe-00a85b7b3b1b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.902 548760 INFO oslo_service.periodic_task [req-d04450e2-e6a7-4934-a61a-572db28b0b6e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.915 548808 INFO oslo_service.periodic_task [req-c74f04aa-2c06-4b81-9639-4be489b0883d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.917 548774 INFO oslo_service.periodic_task [req-bbf0dbe1-ff7c-40aa-809d-d74fec5e5fef - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.924 548794 INFO oslo_service.periodic_task [req-12c9013c-6f50-49a9-a32d-97d582ad0399 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.942 548780 INFO oslo_service.periodic_task [req-9e96fdaf-78da-45e3-8238-0195ec60e1be - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.949 548792 INFO oslo_service.periodic_task [req-3625ced7-a2ca-4368-99e5-e6fe2a2e37c3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.951 548798 INFO oslo_service.periodic_task [req-3a0c36bf-84ed-41ef-bcaf-7c23b25344f3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.952 548802 INFO oslo_service.periodic_task [req-5ccbe9dd-b734-4322-8ec2-0864887cda61 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.978 548766 INFO oslo_service.periodic_task [req-c6f0abc2-75c8-4590-8d35-7fa0e8452c3a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:47.992 548732 INFO oslo_service.periodic_task [req-a319773a-9fad-4408-a324-86bcc1a8b8fc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.004 548764 INFO oslo_service.periodic_task [req-06f47908-fa3a-41d7-a1b8-d7527cce9580 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.009 548818 INFO oslo_service.periodic_task [req-5c4048bf-7727-4df6-b9ce-3d8e1619d27a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.037 548812 INFO oslo_service.periodic_task [req-c8130f2e-1799-451c-bd90-8dfd2e2021d8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.088 548740 INFO oslo_service.periodic_task [req-1e41a419-a855-46f6-a3f4-abcd2d140215 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.105 548826 INFO oslo_service.periodic_task [req-b984c1a9-da12-46aa-916f-fe4780c7e246 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.111 548814 INFO oslo_service.periodic_task [req-6c1c7bea-38af-4f79-9e43-5c895fc3ec61 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.114 548822 INFO oslo_service.periodic_task [req-ebe2c562-0fc1-495d-8094-d96a73a3fb28 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.135 548796 INFO oslo_service.periodic_task [req-dbfa490b-4b8e-4f7d-8468-f51ad74b99d2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.146 548754 INFO oslo_service.periodic_task [req-b2852c2e-a89a-408c-b3c0-011d2c0cbf61 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.151 548833 INFO oslo_service.periodic_task [req-03569883-1309-4fff-915d-d6bb3f07b1ea - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.158 548788 INFO oslo_service.periodic_task [req-7251cfbd-796b-4dfc-9200-5601c4916531 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.166 548758 INFO oslo_service.periodic_task [req-11909d31-1347-4c7f-8ba4-456e7471f118 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.180 548738 INFO oslo_service.periodic_task [req-b205eef3-a65d-432a-84c8-6facc05c1ba0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.186 548829 INFO oslo_service.periodic_task [req-f18f048f-0b09-496e-98a2-021ecc52803d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.219 548831 INFO oslo_service.periodic_task [req-8e122afd-c0a1-496b-b88f-e2e3f7ce8cc5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.220 548790 INFO oslo_service.periodic_task [req-ec1c8066-3752-4d0a-9844-75122ee26c72 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.247 548772 INFO oslo_service.periodic_task [req-a6c3d9e8-de33-4851-ba13-98f9a50aedc4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.236 548786 INFO oslo_service.periodic_task [req-d5dce4eb-7489-4ae8-a18a-ff5ad0073c04 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.231 548782 INFO oslo_service.periodic_task [req-a293b75b-7191-4cc9-a1d0-b321bc4aee95 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.280 548806 INFO oslo_service.periodic_task [req-f665cd40-69be-4db0-9c48-df33ec603fd4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.286 548816 INFO oslo_service.periodic_task [req-7b9b34f3-e70d-4641-a73f-6a166c4982d2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.302 548820 INFO oslo_service.periodic_task [req-30def78c-fb16-4a3f-a40a-d6c2516fd211 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.322 548810 INFO oslo_service.periodic_task [req-85fe9ad2-8729-46d8-981b-353cb4e1bae3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.372 548800 INFO oslo_service.periodic_task [req-c51ca802-d251-4027-a1d5-cc8bf87c37ce - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.535 548770 INFO oslo_service.periodic_task [req-d6c7499f-51a8-457d-a1b0-5694fc2a29b9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.586 548824 INFO oslo_service.periodic_task [req-95f6dff3-79fe-4ae9-a33b-7d03d8e83df2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:02:48.802 548756 INFO oslo_service.periodic_task [req-32b81ca8-fe87-4063-9076-b59f5361eea2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
{1} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.711839s] ... ok
{11} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [1.679793s] ... ok
{6} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.431377s] ... ok
{7} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.394797s] ... ok
{4} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.438287s] ... ok
{10} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.362767s] ... ok
{12} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.519813s] ... ok
{3} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.424377s] ... ok
{9} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.520135s] ... ok
{8} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.450313s] ... ok
{22} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{0} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.467079s] ... ok
{21} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [3.297740s] ... ok
{31} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.826210s] ... ok
{26} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.721053s] ... ok
{18} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [3.577401s] ... ok
{33} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [4.183133s] ... ok
{37} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.210645s] ... ok
{14} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [4.608375s] ... ok
{5} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [4.446477s] ... ok
{38} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [4.537836s] ... ok
{47} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [4.383149s] ... ok
{41} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.033735s] ... ok
{43} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [4.978488s] ... ok
{13} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.154541s] ... ok
{16} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [4.760211s] ... ok
{45} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [5.054751s] ... ok
{55} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [5.008258s] ... ok
{20} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.349539s] ... ok
{46} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [5.192024s] ... ok
{54} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [5.135208s] ... ok
{49} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.204927s] ... ok
{44} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [5.240723s] ... ok
{42} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.273411s] ... ok
{29} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [5.674249s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "security_groups", "security_group_instance_association" and FROM element "instances". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{39} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.258442s] ... ok
{28} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [5.957619s] ... ok
{27} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [6.205063s] ... ok
{23} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [6.300060s] ... ok
{32} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [5.966212s] ... ok
{17} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [5.446913s] ... ok
{34} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [6.296235s] ... ok
{25} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [6.304910s] ... ok
{19} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.642064s] ... ok
{49} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [1.065082s] ... ok
{48} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [6.659043s] ... ok
{50} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [6.729763s] ... ok
{12} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [4.704936s] ... ok
{35} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [7.206486s] ... ok
{36} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [7.305813s] ... ok
{52} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [7.271465s] ... ok
{22} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [4.198467s] ... ok
{53} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [7.277311s] ... ok
{7} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [5.383727s] ... ok
{10} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [5.290883s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/hub.py", line 476, in fire_timers
timer()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/timer.py", line 59, in __call__
cb(*args, **kw)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/greenthread.py", line 221, in main
result = function(*args, **kwargs)
File "/home/ubuntu/nova/nova/utils.py", line 655, in context_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/tests/fixtures/nova.py", line 1661, in test_case_id_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9744, in _live_migration_operation
LOG.error("Live Migration failure: %s", e, instance=instance)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9700, in _live_migration_operation
new_xml_str = libvirt_migrate.get_updated_guest_xml(
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 66, in get_updated_guest_xml
xml_doc = _update_vif_xml(xml_doc, migrate_data, get_vif_config)
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 396, in _update_vif_xml
interface_dev.insert(index + 1, address)
TypeError: Argument 'element' has incorrect type (expected lxml.etree._Element, got NoneType)
{8} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [4.831865s] ... ok
{40} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [7.364133s] ... ok
{31} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [4.280201s] ... ok
{27} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [1.891372s] ... ok
{30} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [7.677867s] ... ok
{45} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [3.035293s] ... ok
{48} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.667344s] ... ok
{10} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.996357s] ... ok
{11} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [7.010640s] ... ok
{34} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [2.054698s] ... ok
{51} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [8.053423s] ... ok
{36} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [1.656740s] ... ok
{24} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [8.328326s] ... ok
{3} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [6.626313s] ... ok
{15} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [9.132001s] ... ok
{18} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [5.333861s] ... ok
{38} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.633174s] ... ok
{28} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [3.676115s] ... ok
{44} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [3.789369s] ... ok
{20} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [4.240215s] ... ok
{26} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.786152s] ... ok
{23} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.319514s] ... ok
{29} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [3.839797s] ... ok
{41} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [4.598100s] ... ok
{9} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [6.883010s] ... ok
{2} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.477854s] ... ok
{43} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [4.713648s] ... ok
{21} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [6.346247s] ... ok
{16} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [4.752176s] ... ok
{6} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [7.877961s] ... ok
{19} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [3.298740s] ... ok
{55} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [4.797096s] ... ok
{40} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [2.486229s] ... ok
{33} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [5.680338s] ... ok
{52} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [2.650271s] ... ok
{1} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [8.595039s] ... ok
{46} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [4.814774s] ... ok
{49} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [3.572578s] ... ok
{4} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [8.011677s] ... ok
{37} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [5.841561s] ... ok
{25} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [3.683372s] ... ok
{13} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [5.381104s] ... ok
{0} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [7.066509s] ... ok
{47} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [5.806097s] ... ok
{50} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [3.808520s] ... ok
{42} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [5.106410s] ... ok
{32} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [4.563979s] ... ok
{39} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [5.147462s] ... ok
{35} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [3.974199s] ... ok
{47} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.733895s] ... ok
{30} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.352199s] ... ok
{14} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.874932s] ... ok
{54} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [6.075076s] ... ok
{15} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [2.996631s] ... ok
{5} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.552618s] ... ok
{53} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [4.540922s] ... ok
{2} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [2.531828s] ... ok
{24} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.427334s] ... ok
{48} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.116648s] ... ok
{51} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [4.157769s] ... ok
{17} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [7.114840s] ... ok
======
Totals
======
Ran: 116 tests in 13.8510 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 556.6381 sec.
==============
Worker Balance
==============
- Worker 0 (2 tests) => 0:00:10.534827
- Worker 1 (2 tests) => 0:00:10.308981
- Worker 2 (2 tests) => 0:00:12.011969
- Worker 3 (2 tests) => 0:00:09.053075
- Worker 4 (2 tests) => 0:00:10.452022
- Worker 5 (2 tests) => 0:00:11.999661
- Worker 6 (2 tests) => 0:00:10.311918
- Worker 7 (2 tests) => 0:00:07.781110
- Worker 8 (2 tests) => 0:00:07.284796
- Worker 9 (2 tests) => 0:00:09.406514
- Worker 10 (3 tests) => 0:00:08.654235
- Worker 11 (2 tests) => 0:00:08.692877
- Worker 12 (2 tests) => 0:00:07.227495
- Worker 13 (2 tests) => 0:00:10.537283
- Worker 14 (2 tests) => 0:00:11.485211
- Worker 15 (2 tests) => 0:00:12.129805
- Worker 16 (2 tests) => 0:00:09.514215
- Worker 17 (2 tests) => 0:00:12.562846
- Worker 18 (2 tests) => 0:00:08.912500
- Worker 19 (2 tests) => 0:00:09.942929
- Worker 20 (2 tests) => 0:00:09.591352
- Worker 21 (2 tests) => 0:00:09.645267
- Worker 22 (2 tests) => 0:00:07.480088
- Worker 23 (2 tests) => 0:00:09.621485
- Worker 24 (2 tests) => 0:00:11.757821
- Worker 25 (2 tests) => 0:00:09.989125
- Worker 26 (2 tests) => 0:00:09.509562
- Worker 27 (2 tests) => 0:00:08.097968
- Worker 28 (2 tests) => 0:00:09.635711
- Worker 29 (2 tests) => 0:00:09.515440
- Worker 30 (2 tests) => 0:00:11.031406
- Worker 31 (2 tests) => 0:00:08.108503
- Worker 32 (2 tests) => 0:00:10.532144
- Worker 33 (2 tests) => 0:00:09.864624
- Worker 34 (2 tests) => 0:00:08.351891
- Worker 35 (2 tests) => 0:00:11.182231
- Worker 36 (2 tests) => 0:00:08.963940
- Worker 37 (2 tests) => 0:00:10.053501
- Worker 38 (2 tests) => 0:00:09.171882
- Worker 39 (2 tests) => 0:00:10.407409
- Worker 40 (2 tests) => 0:00:09.851848
- Worker 41 (2 tests) => 0:00:09.633977
- Worker 42 (2 tests) => 0:00:10.381003
- Worker 43 (2 tests) => 0:00:09.698704
- Worker 44 (2 tests) => 0:00:09.031100
- Worker 45 (2 tests) => 0:00:08.092265
- Worker 46 (2 tests) => 0:00:10.008899
- Worker 47 (3 tests) => 0:00:10.925761
- Worker 48 (3 tests) => 0:00:12.445485
- Worker 49 (3 tests) => 0:00:09.845171
- Worker 50 (2 tests) => 0:00:10.540290
- Worker 51 (2 tests) => 0:00:12.212590
- Worker 52 (2 tests) => 0:00:09.923238
- Worker 53 (2 tests) => 0:00:11.819667
- Worker 54 (2 tests) => 0:00:11.211804
- Worker 55 (2 tests) => 0:00:09.806679
functional-py39 run-test: commands[1] | stestr slowest
Test id Runtime (s)
------------------------------------------------------------------------------------------------------------------------------------------- -----------
nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid 9.478
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False 9.132
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 8.595
nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate 8.328
nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True 8.053
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False 8.012
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True 7.878
nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules 7.678
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.553
nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup 7.364
__________________________________________________________________________________ summary __________________________________________________________________________________
functional-py39: commands succeeded
congratulations :)
Tox run 18
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/easy_install.py:160: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
functional-py39 develop-inst-noop: /home/ubuntu/nova
functional-py39 installed: alembic==1.7.6,amqp==5.0.9,appdirs==1.4.4,attrs==21.4.0,automaton==2.5.0,autopage==0.5.0,bandit==1.7.4,bcrypt==3.2.0,cachetools==5.0.0,castellan==3.10.1,certifi==2021.10.8,cffi==1.15.0,charset-normalizer==2.0.12,cliff==3.10.1,cmd2==2.4.0,colorama==0.4.4,coverage==6.3.2,cryptography==36.0.1,cursive==0.2.2,ddt==1.4.4,debtcollector==2.4.0,decorator==5.1.1,dnspython==2.1.0,dogpile.cache==1.1.5,eventlet==0.33.0,extras==1.0.0,fasteners==0.17.3,fixtures==3.0.0,flake8==3.8.4,future==0.18.2,futurist==2.4.0,gabbi==2.4.0,gitdb==4.0.9,GitPython==3.1.27,greenlet==1.1.2,hacking==3.1.0,idna==3.3,iniconfig==1.1.1,iso8601==1.0.2,Jinja2==3.0.3,jmespath==0.10.0,jsonpatch==1.32,jsonpath-rw==1.4.0,jsonpath-rw-ext==1.2.2,jsonpointer==2.2,jsonschema==3.2.0,keystoneauth1==4.5.0,keystonemiddleware==9.4.0,kombu==5.2.4,lxml==4.8.0,Mako==1.1.6,MarkupSafe==2.1.1,mccabe==0.6.1,microversion-parse==1.0.1,mock==4.0.3,msgpack==1.0.3,munch==2.5.0,mypy==0.931,mypy-extensions==0.4.3,netaddr==0.8.0,netifaces==0.11.0,networkx==2.7.1,-e git+https://review.opendev.org/openstack/nova@d43538712c034023bdb3e25cd7adfdee409ed596#egg=nova,numpy==1.22.3,openstack-placement==6.0.0,openstacksdk==0.61.0,os-brick==5.2.0,os-client-config==2.1.0,os-resource-classes==1.1.0,os-service-types==1.7.0,os-traits==2.7.0,os-vif==2.7.1,os-win==5.6.0,osc-lib==2.5.0,oslo.cache==2.10.1,oslo.concurrency==4.5.0,oslo.config==8.8.0,oslo.context==4.1.0,oslo.db==11.2.0,oslo.i18n==5.1.0,oslo.log==4.7.0,oslo.messaging==12.13.0,oslo.metrics==0.4.0,oslo.middleware==4.5.1,oslo.policy==3.11.0,oslo.privsep==2.7.0,oslo.reports==2.3.0,oslo.rootwrap==6.3.1,oslo.serialization==4.3.0,oslo.service==2.8.0,oslo.upgradecheck==1.5.0,oslo.utils==4.12.2,oslo.versionedobjects==2.6.0,oslotest==4.5.0,osprofiler==3.4.2,ovs==2.16.0,ovsdbapp==1.15.1,packaging==21.3,paramiko==2.8.1,Paste==3.5.0,PasteDeploy==2.1.1,pbr==5.8.1,pluggy==1.0.0,ply==3.11,prettytable==3.2.0,prometheus-client==0.13.1,psutil==5.9.0,psycopg2-binary==2.9.3,py==1.11.0,pycadf==3.1.1,pycodestyle==2.6.0,pycparser==2.21,pydot==1.4.2,pyflakes==2.2.0,pyinotify==0.9.6,PyMySQL==1.0.2,PyNaCl==1.5.0,pyOpenSSL==22.0.0,pyparsing==3.0.7,pyperclip==1.8.2,pyroute2==0.6.6,pyroute2.core==0.6.6,pyroute2.ethtool==0.6.6,pyroute2.ipdb==0.6.6,pyroute2.ipset==0.6.6,pyroute2.ndb==0.6.6,pyroute2.nftables==0.6.6,pyroute2.nslink==0.6.6,pyrsistent==0.18.1,pytest==7.0.1,python-barbicanclient==5.3.0,python-cinderclient==8.3.0,python-dateutil==2.8.2,python-glanceclient==3.6.0,python-ironicclient==4.11.0,python-keystoneclient==4.4.0,python-neutronclient==7.8.0,python-subunit==1.4.0,pytz==2021.3,PyYAML==6.0,repoze.lru==0.7,requests==2.27.1,requests-mock==1.9.3,requestsexceptions==1.4.0,retrying==1.3.3,rfc3986==1.5.0,Routes==2.5.1,simplejson==3.17.6,six==1.16.0,smmap==5.0.0,sortedcontainers==2.4.0,SQLAlchemy==1.4.31,sqlalchemy-migrate==0.13.0,sqlparse==0.4.2,statsd==3.3.0,stestr==3.2.1,stevedore==3.5.0,taskflow==4.6.4,Tempita==0.5.2,tenacity==6.3.1,testresources==2.0.1,testscenarios==0.5.0,testtools==2.5.0,tomli==2.0.1,tooz==2.10.1,types-cryptography==3.3.15,types-enum34==1.1.8,types-ipaddress==1.0.8,types-paramiko==2.8.13,typing_extensions==4.1.1,urllib3==1.26.8,vine==5.0.0,voluptuous==0.12.2,warlock==1.3.3,wcwidth==0.2.5,WebOb==1.8.7,websockify==0.10.0,wrapt==1.13.3,wsgi-intercept==1.9.3,yappi==1.3.3
functional-py39 run-test-pre: PYTHONHASHSEED='1890133991'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
2022-03-15 19:03:21.169 549490 INFO oslo_service.periodic_task [req-a8d9d4a2-77ad-42bd-aeca-8fe1d030188c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.223 549472 INFO oslo_service.periodic_task [req-7a85439f-aa6a-435f-8d7f-272d35f39992 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.247 549468 INFO oslo_service.periodic_task [req-8b8c405c-3d10-4b07-a538-5a31f6f49657 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.266 549488 INFO oslo_service.periodic_task [req-feb90082-26b5-47a6-8b77-6fd9a56c7c99 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.270 549496 INFO oslo_service.periodic_task [req-4b0f26a3-eeb4-49b7-b82b-b1b98d15d91c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.273 549494 INFO oslo_service.periodic_task [req-6fbfe9db-4ca3-429c-92a1-56e70b4d76ed - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.289 549508 INFO oslo_service.periodic_task [req-0e992588-6929-4277-a79f-279a447719bf - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.316 549470 INFO oslo_service.periodic_task [req-df553ba7-ac28-49e8-a785-623a2f1199c5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.349 549498 INFO oslo_service.periodic_task [req-e151c597-5259-4e1a-b58b-3e6d64382da0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.350 549474 INFO oslo_service.periodic_task [req-6a6e675a-a540-4ffa-be77-8882214d6e47 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.350 549502 INFO oslo_service.periodic_task [req-25a2897e-c620-472a-bff1-91dfda2a1e93 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.360 549544 INFO oslo_service.periodic_task [req-4fc4ff68-d5af-4305-89ab-e007de54921b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.352 549510 INFO oslo_service.periodic_task [req-632bb909-13cb-4553-91be-ff820a86bc13 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.377 549506 INFO oslo_service.periodic_task [req-76a3c5b5-5c9d-433e-a0a2-5859fa748825 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.400 549500 INFO oslo_service.periodic_task [req-da9a1c1f-414a-4c1e-ab7e-101b9ce037b7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.405 549478 INFO oslo_service.periodic_task [req-51b20679-9506-4c1c-9049-dc661433607c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.407 549512 INFO oslo_service.periodic_task [req-a398556f-2453-4400-9e01-5de8df2b72bf - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.446 549526 INFO oslo_service.periodic_task [req-46beb7a8-29b6-4cbb-bbf4-a80c06388271 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.449 549504 INFO oslo_service.periodic_task [req-e40616ba-c486-4fb2-9ca9-d7d35c11cf5d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.449 549538 INFO oslo_service.periodic_task [req-c24b57d8-070b-4be5-ba65-d095d0173a0c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.460 549524 INFO oslo_service.periodic_task [req-8fd39b68-096e-44c0-aa3b-720f744088ea - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.467 549518 INFO oslo_service.periodic_task [req-9b70492b-e723-4230-b25f-365e57b80149 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.494 549520 INFO oslo_service.periodic_task [req-2a51829c-5cc8-4793-ac4d-85d05636b856 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.508 549558 INFO oslo_service.periodic_task [req-218a20f7-4d26-4c96-a971-f6f1eb5d45f2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.523 549562 INFO oslo_service.periodic_task [req-3634484d-dc3b-4f90-beb4-9e36d7f95ddd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.526 549554 INFO oslo_service.periodic_task [req-a20da16b-ba4d-4ed1-9849-db6e30a8f351 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.540 549556 INFO oslo_service.periodic_task [req-b6e5b1ff-4eb3-490d-970c-5e16e295f973 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.544 549484 INFO oslo_service.periodic_task [req-24b3791b-b1b6-4e2f-bff5-8259a11b1fd3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.549 549552 INFO oslo_service.periodic_task [req-97f3a6c8-ac51-4bb8-b370-7b65fc27f630 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.556 549542 INFO oslo_service.periodic_task [req-de46d9ae-2aa8-497d-9100-e48bb4a28215 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.565 549522 INFO oslo_service.periodic_task [req-a55e5a4e-e86d-4383-95e0-5d977ef56651 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.595 549564 INFO oslo_service.periodic_task [req-dac4ace9-126a-4288-a36b-c4ea67df00b6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.600 549536 INFO oslo_service.periodic_task [req-57456c78-062d-4127-8af9-db97061872f7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.609 549540 INFO oslo_service.periodic_task [req-a27fa8e6-3257-4c47-8e52-f3d3abd5a8ba - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.629 549574 INFO oslo_service.periodic_task [req-c589dc37-4f14-4aee-99f7-026d51f42d8d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.656 549568 INFO oslo_service.periodic_task [req-176c3e28-281d-47ec-a0d3-5c97e1eb66ef - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.663 549546 INFO oslo_service.periodic_task [req-181802e6-c0e3-41f3-99bd-79c68a9cbe5a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.678 549534 INFO oslo_service.periodic_task [req-0d867f4e-94f8-49aa-a1e6-e81f4626efbc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.684 549570 INFO oslo_service.periodic_task [req-3d9cea04-a41a-4fa7-a708-c900241acfd4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.693 549516 INFO oslo_service.periodic_task [req-7a265414-037b-4af3-8879-12bd7582b59a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.723 549514 INFO oslo_service.periodic_task [req-d3fe08cf-39cf-485f-9ef9-253b4bca9998 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.724 549530 INFO oslo_service.periodic_task [req-00975246-6057-4116-bc96-230f3257d1dc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.728 549492 INFO oslo_service.periodic_task [req-1eafc94e-e5c3-4691-96e2-a19022ea31e5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.736 549548 INFO oslo_service.periodic_task [req-5d41d08e-b329-4880-8858-3c6f678156c4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.748 549480 INFO oslo_service.periodic_task [req-1cb3af6c-d4d5-4f85-bd6e-fa217f417687 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.749 549579 INFO oslo_service.periodic_task [req-18ec5402-361e-4b11-bdf2-f014e353043e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.780 549566 INFO oslo_service.periodic_task [req-4d4e0f98-77ea-4b68-8fe7-461c54982ea2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.881 549528 INFO oslo_service.periodic_task [req-7e6c9304-afa1-4931-a13f-0181ea9fb5b0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.895 549572 INFO oslo_service.periodic_task [req-2d965621-12d5-418f-827d-a2707ab96a36 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.900 549486 INFO oslo_service.periodic_task [req-7633903a-7d6c-4513-b3ae-65cc7415da06 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.955 549550 INFO oslo_service.periodic_task [req-1636a04e-6bdf-4ffc-806f-9483837e5501 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:21.961 549577 INFO oslo_service.periodic_task [req-67afe985-ff5a-43b2-89eb-e2b402ac46d0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:22.011 549532 INFO oslo_service.periodic_task [req-8cd4f579-f84c-4c5f-a819-c5e35a4c00bd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:22.031 549476 INFO oslo_service.periodic_task [req-e414bd70-9287-45e6-9f12-f3a617d06fab - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:22.041 549560 INFO oslo_service.periodic_task [req-fc01fb4f-0003-4816-a44c-7ad494b3dbe1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:22.146 549482 INFO oslo_service.periodic_task [req-4c847fa9-df10-492a-9880-9885c030e3cd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
{2} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.633552s] ... ok
{1} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [1.634952s] ... ok
{13} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.374980s] ... ok
{10} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.413831s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.400378s] ... ok
{8} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.535666s] ... ok
{12} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.440540s] ... ok
{6} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.468606s] ... ok
{9} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.504761s] ... ok
{7} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.398716s] ... ok
{19} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [3.369163s] ... ok
{18} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{29} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.710114s] ... ok
{37} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [3.905273s] ... ok
{14} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [4.326641s] ... ok
{11} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [4.460794s] ... ok
{39} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.093330s] ... ok
{17} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [4.418313s] ... ok
{32} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.832106s] ... ok
{4} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [3.943977s] ... ok
{15} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [4.693031s] ... ok
{48} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [4.501349s] ... ok
{45} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [4.958122s] ... ok
{53} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [4.918077s] ... ok
{44} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [5.024210s] ... ok
{47} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.229486s] ... ok
{42} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.285484s] ... ok
{28} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.451459s] ... ok
{51} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [5.200537s] ... ok
{49} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [5.234336s] ... ok
{43} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.500243s] ... ok
{26} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.553577s] ... ok
{52} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.152612s] ... ok
{46} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [5.029146s] ... ok
{54} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.209704s] ... ok
{35} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [5.913029s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "instances" and FROM element "security_groups". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{38} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [6.067624s] ... ok
{50} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [5.997793s] ... ok
{27} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [6.115147s] ... ok
{39} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [1.923989s] ... ok
{25} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [6.401833s] ... ok
{24} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [6.207226s] ... ok
{33} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [6.243050s] ... ok
{26} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [0.916104s] ... ok
{20} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [6.712988s] ... ok
{30} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [6.197251s] ... ok
{55} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [6.328331s] ... ok
{21} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.994054s] ... ok
{36} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [7.009175s] ... ok
{13} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [4.973105s] ... ok
{40} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [6.950673s] ... ok
{9} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [4.607664s] ... ok
{12} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [4.960887s] ... ok
{34} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [7.622608s] ... ok
{10} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [5.590380s] ... ok
{22} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [7.881581s] ... ok
{41} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [7.367543s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/hub.py", line 476, in fire_timers
timer()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/hubs/timer.py", line 59, in __call__
cb(*args, **kw)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/eventlet/greenthread.py", line 221, in main
result = function(*args, **kwargs)
File "/home/ubuntu/nova/nova/utils.py", line 655, in context_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/tests/fixtures/nova.py", line 1661, in test_case_id_wrapper
return func(*args, **kwargs)
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9744, in _live_migration_operation
LOG.error("Live Migration failure: %s", e, instance=instance)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/virt/libvirt/driver.py", line 9700, in _live_migration_operation
new_xml_str = libvirt_migrate.get_updated_guest_xml(
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 66, in get_updated_guest_xml
xml_doc = _update_vif_xml(xml_doc, migrate_data, get_vif_config)
File "/home/ubuntu/nova/nova/virt/libvirt/migration.py", line 396, in _update_vif_xml
interface_dev.insert(index + 1, address)
TypeError: Argument 'element' has incorrect type (expected lxml.etree._Element, got NoneType)
{31} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [7.646009s] ... ok
{29} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [4.270155s] ... ok
{24} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [1.538236s] ... ok
{3} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [8.157540s] ... ok
{53} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [3.003157s] ... ok
{44} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [3.072734s] ... ok
{42} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [2.792805s] ... ok
{43} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [2.667106s] ... ok
{23} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [7.985022s] ... ok
{41} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.492447s] ... ok
{16} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [8.570753s] ... ok
{19} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [5.349700s] ... ok
{7} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [5.644803s] ... ok
{39} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [2.857302s] ... ok
{1} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [7.838928s] ... ok
{37} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [5.462857s] ... ok
{20} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [2.954495s] ... ok
{45} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [4.485055s] ... ok
{11} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [5.402185s] ... ok
{0} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.784435s] ... ok
{5} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.265206s] ... ok
{51} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [4.309250s] ... ok
{3} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [1.714582s] ... ok
{49} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.247107s] ... ok
{2} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [8.408762s] ... ok
{32} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [5.475268s] ... ok
{47} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [4.656699s] ... ok
{46} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [4.409543s] ... ok
{35} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.127358s] ... ok
{4} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [5.516632s] ... ok
{21} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.193044s] ... ok
{27} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [3.942412s] ... ok
{36} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.031484s] ... ok
{37} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [0.772180s] ... ok
{6} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [7.500799s] ... ok
{48} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [5.687994s] ... ok
{30} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [3.733142s] ... ok
{8} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.908202s] ... ok
{54} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [4.836687s] ... ok
{18} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [7.282632s] ... ok
{28} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [5.198536s] ... ok
{0} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.116363s] ... ok
{52} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [5.183022s] ... ok
{14} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [6.830936s] ... ok
{41} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [2.763488s] ... ok
{25} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.744171s] ... ok
{15} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [6.599459s] ... ok
{50} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [5.043450s] ... ok
{17} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [7.016785s] ... ok
{38} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [5.398813s] ... ok
{23} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.247954s] ... ok
{55} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [4.899046s] ... ok
{16} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [3.061352s] ... ok
{22} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.885159s] ... ok
{33} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.270650s] ... FAILED
Captured traceback:
~~~~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/nova/tests/functional/regressions/test_bug_1944619.py", line 87, in test_rollback_pre_live_migration
self.libvirt_mock.mock.assert_called_once()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 891, in assert_called_once
raise AssertionError(msg)
AssertionError: Expected 'rollback_live_migration_at_source' to have been called once. Called 0 times.
Captured pythonlogging:
~~~~~~~~~~~~~~~~~~~~~~
2022-03-15 19:03:28,657 WARNING [oslo_policy.policy] JSON formatted policy_file support is deprecated since Victoria release. You need to use YAML format which will be default in future. You can use ``oslopolicy-convert-json-to-yaml`` tool to convert existing JSON-formatted policy file to YAML-formatted in backward compatible way: https://docs.openstack.org/oslo.policy/latest/cli/oslopolicy-convert-json-to-yaml.html.
2022-03-15 19:03:28,662 WARNING [oslo_policy.policy] JSON formatted policy_file support is deprecated since Victoria release. You need to use YAML format which will be default in future. You can use ``oslopolicy-convert-json-to-yaml`` tool to convert existing JSON-formatted policy file to YAML-formatted in backward compatible way: https://docs.openstack.org/oslo.policy/latest/cli/oslopolicy-convert-json-to-yaml.html.
2022-03-15 19:03:28,665 WARNING [oslo_policy.policy] Policy Rules ['os_compute_api:extensions', 'os_compute_api:os-floating-ip-pools', 'os_compute_api:os-quota-sets:defaults', 'os_compute_api:os-availability-zone:list', 'os_compute_api:limits', 'system_admin_api', 'system_reader_api', 'project_admin_api', 'project_member_api', 'project_reader_api', 'system_admin_or_owner', 'system_or_project_reader', 'os_compute_api:limits:other_project', 'os_compute_api:os-lock-server:unlock:unlock_override', 'os_compute_api:servers:create:zero_disk_flavor', 'compute:servers:resize:cross_cell'] specified in policy files are the same as the defaults provided by the service. You can remove these rules from policy files which will make maintenance easier. You can detect these redundant rules by ``oslopolicy-list-redundant`` tool also.
2022-03-15 19:03:28,671 WARNING [placement.db_api] TransactionFactory already started, not reconfiguring.
2022-03-15 19:03:28,796 INFO [nova.service] Starting conductor node (version 24.1.0)
2022-03-15 19:03:28,863 INFO [nova.service] Starting scheduler node (version 24.1.0)
2022-03-15 19:03:30,873 INFO [os_vif] Loaded VIF plugins: linux_bridge, noop, ovs
2022-03-15 19:03:30,914 INFO [nova.virt.driver] Loading compute driver 'libvirt.LibvirtDriver'
2022-03-15 19:03:30,917 INFO [nova.compute.provider_config] No provider configs found in /etc/nova/provider_config/. If files are present, ensure the Nova process has access.
2022-03-15 19:03:30,926 INFO [nova.service] Starting compute node (version 24.1.0)
2022-03-15 19:03:30,940 INFO [nova.virt.libvirt.host] Secure Boot support detected
2022-03-15 19:03:30,942 WARNING [nova.virt.libvirt.driver] my_ip address (10.230.62.178) was not found on any of the interfaces:
2022-03-15 19:03:30,942 WARNING [nova.virt.libvirt.driver] Running Nova with a libvirt version less than 7.0.0 is deprecated. The required minimum version of libvirt will be raised to 7.0.0 in the next release.
2022-03-15 19:03:30,943 WARNING [nova.virt.libvirt.driver] Running Nova with a QEMU version less than 5.2.0 is deprecated. The required minimum version of QEMU will be raised to 5.2.0 in the next release.
2022-03-15 19:03:30,978 WARNING [nova.compute.manager] Compute node src not found in the database. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 19:03:30,983 INFO [nova.compute.manager] Looking for unclaimed instances stuck in BUILDING status for nodes managed by this host
2022-03-15 19:03:30,996 WARNING [nova.compute.manager] No compute node record found for host src. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 19:03:31,002 WARNING [nova.compute.resource_tracker] No compute node record for src:src
2022-03-15 19:03:31,007 INFO [nova.compute.resource_tracker] Compute node record created for src:src with uuid: 22b12537-34bd-4eaf-b633-3dc36fba4b08
2022-03-15 19:03:31,058 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?in_tree=22b12537-34bd-4eaf-b633-3dc36fba4b08" status: 200 len: 26 microversion: 1.14
2022-03-15 19:03:31,069 INFO [placement.requestlog] 127.0.0.1 "POST /placement/resource_providers" status: 200 len: 826 m
icroversion: 1.20
2022-03-15 19:03:31,070 INFO [nova.scheduler.client.report] [req-f8392ec9-6b0e-4716-9295-53cbc9ca5bd4] Created resource provider record via placement API for resource provider with UUID 22b12537-34bd-4eaf-b633-3dc36fba4b08 and name src.
2022-03-15 19:03:31,070 INFO [nova.virt.libvirt.host] kernel doesn't support AMD SEV
2022-03-15 19:03:31,094 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/22b12537-34bd-4eaf-b633-3dc36fba4b08/inventories" status: 200 len: 407 microversion: 1.26
2022-03-15 19:03:31,106 INFO [placement.requestlog] 127.0.0.1 "GET /placement/traits?name=in:COMPUTE_VOLUME_ATTACH_WITH_TAG,COMPUTE_ACCELERATORS,COMPUTE_VOLUME_EXTEND,COMPUTE_NET_VIF_MODEL_NE2K_PCI,COMPUTE_NET_VIF_MODEL_SPAPR_VLAN,COMPUTE_GRAPHICS_MODEL_CIRRUS,COMPUTE_IMAGE_TYPE_ARI,COMPUTE_NET_VIF_MODEL_VIRTIO,COMPUTE_STORAGE_BUS_VIRTIO,HW_CPU_X86_AESNI,COMPUTE_STORAGE_BUS_USB,COMPUTE_GRAPHICS_MODEL_BOCHS,COMPUTE_NET_ATTACH_INTERFACE,COMPUTE_NET_VIF_MODEL_RTL8139,COMPUTE_STORAGE_BUS_IDE,COMPUTE_GRAPHICS_MODEL_VMVGA,COMPUTE_IMAGE_TYPE_QCOW2,COMPUTE_NET_VIF_MODEL_PCNET,COMPUTE_GRAPHICS_MODEL_VGA,COMPUTE_NET_VIF_MODEL_E1000,COMPUTE_IMAGE_TYPE_AKI,COMPUTE_NODE,HW_CPU_X86_VMX,COMPUTE_STORAGE_BUS_SCSI,COMPUTE_SECURITY_UEFI_SECURE_BOOT,COMPUTE_GRAPHICS_MODEL_QXL,COMPUTE_NET_VIF_MODEL_E1000E,COMPUTE_IMAGE_TYPE_RAW,COMPUTE_IMAGE_TYPE_AMI,COMPUTE_STORAGE_BUS_SATA,COMPUTE_NET_ATTACH_INTERFACE_WITH_TAG,COMPUTE_DEVICE_TAGGING,COMPUTE_STORAGE_BUS_FDC,COMPUTE_GRAPHICS_MODEL_NONE,COMPUTE_NET_VIF_MODEL_VMXNET3,COMPUTE_VOLUME_MULTI_ATTACH,COMPUTE_RESCUE_BFV,HW_CPU_X86_INTEL_VMX,COMPUTE_SOCKET_PCI_NUMA_AFFINITY,COMPUTE_TRUSTED_CERTS,COMPUTE_GRAPHICS_MODEL_VIRTIO,COMPUTE_IMAGE_TYPE_ISO" status: 200 len: 1231 microversion: 1.6
2022-03-15 19:03:31,134 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/22b12537-34bd-4eaf-b633-3dc36fba4b08/traits" status: 200 len: 1266 microversion: 1.6
2022-03-15 19:03:31,145 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?name=src" status: 200 len: 430 microversion: 1.0
2022-03-15 19:03:31,155 INFO [nova.virt.driver] Loading compute driver 'libvirt.LibvirtDriver'
2022-03-15 19:03:31,157 INFO [nova.compute.provider_config] No provider configs found in /etc/nova/provider_config/. If files are present, ensure the Nova process has access.
2022-03-15 19:03:31,163 INFO [nova.service] Starting compute node (version 24.1.0)
2022-03-15 19:03:31,173 INFO [nova.virt.libvirt.host] Secure Boot support detected
2022-03-15 19:03:31,173 WARNING [nova.virt.libvirt.driver] my_ip address (10.230.62.178) was not found on any of the interfaces:
2022-03-15 19:03:31,174 WARNING [nova.virt.libvirt.driver] Running Nova with a libvirt version less than 7.0.0 is deprecated. The required minimum version of libvirt will be raised to 7.0.0 in the next release.
2022-03-15 19:03:31,174 WARNING [nova.virt.libvirt.driver] Running Nova with a QEMU version less than 5.2.0 is deprecated. The required minimum version of QEMU will be raised to 5.2.0 in the next release.
2022-03-15 19:03:31,181 WARNING [nova.compute.manager] Compute node dest not found in the database. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 19:03:31,184 INFO [nova.compute.manager] Looking for unclaimed instances stuck in BUILDING status for nodes managed by this host
2022-03-15 19:03:31,192 WARNING [nova.compute.manager] No compute node record found for host dest. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 19:03:31,197 WARNING [nova.compute.resource_tracker] No compute node record for dest:dest
2022-03-15 19:03:31,201 INFO [nova.compute.resource_tracker] Compute node record created for dest:dest with uuid: 6042caa8-55c0-4362-8ffe-0ed10e0a3dbd
2022-03-15 19:03:31,223 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?in_tree=6042caa8-55c0-4362-8ffe-0ed10e0a3dbd" status: 200 len: 26 microversion: 1.14
2022-03-15 19:03:31,231 INFO [placement.requestlog] 127.0.0.1
"POST /placement/resource_providers" status: 200 len: 827 microversion: 1.20
2022-03-15 19:03:31,232 INFO [nova.scheduler.client.report] [req-6d6ba925-0489-47aa-904e-8e835047422a] Created resource provider record via placement API for resource provider with UUID 6042caa8-55c0-4362-8ffe-0ed10e0a3dbd and name dest.
2022-03-15 19:03:31,233 INFO [nova.virt.libvirt.host] kernel doesn't support AMD SEV
2022-03-15 19:03:31,251 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/6042caa8-55c0-4362-8ffe-0ed10e0a3dbd/inventories" status: 200 len: 407 microversion: 1.26
2022-03-15 19:03:31,261 INFO [placement.requestlog] 127.0.0.1 "GET /placement/traits?name=in:COMPUTE_VOLUME_ATTACH_WITH_TAG,COMPUTE_ACCELERATORS,COMPUTE_VOLUME_EXTEND,COMPUTE_NET_VIF_MODEL_NE2K_PCI,COMPUTE_NET_VIF_MODEL_SPAPR_VLAN,COMPUTE_GRAPHICS_MODEL_CIRRUS,COMPUTE_IMAGE_TYPE_ARI,COMPUTE_NET_VIF_MODEL_VIRTIO,COMPUTE_STORAGE_BUS_VIRTIO,HW_CPU_X86_AESNI,COMPUTE_STORAGE_BUS_USB,COMPUTE_GRAPHICS_MODEL_BOCHS,COMPUTE_NET_ATTACH_INTERFACE,COMPUTE_NET_VIF_MODEL_RTL8139,COMPUTE_STORAGE_BUS_IDE,COMPUTE_GRAPHICS_MODEL_VMVGA,COMPUTE_IMAGE_TYPE_QCOW2,COMPUTE_NET_VIF_MODEL_PCNET,COMPUTE_GRAPHICS_MODEL_VGA,COMPUTE_NET_VIF_MODEL_E1000,COMPUTE_IMAGE_TYPE_AKI,COMPUTE_NODE,HW_CPU_X86_VMX,COMPUTE_STORAGE_BUS_SCSI,COMPUTE_SECURITY_UEFI_SECURE_BOOT,COMPUTE_GRAPHICS_MODEL_QXL,COMPUTE_NET_VIF_MODEL_E1000E,COMPUTE_IMAGE_TYPE_RAW,COMPUTE_IMAGE_TYPE_AMI,COMPUTE_STORAGE_BUS_SATA,COMPUTE_NET_ATTACH_INTERFACE_WITH_TAG,COMPUTE_DEVICE_TAGGING,COMPUTE_STORAGE_BUS_FDC,COMPUTE_GRAPHICS_MODEL_NONE,COMPUTE_NET_VIF_MODEL_VMXNET3,COMPUTE_VOLUME_MULTI_ATTACH,COMPUTE_RESCUE_BFV,HW_CPU_X86_INTEL_VMX,COMPUTE_SOCKET_PCI_NUMA_AFFINITY,COMPUTE_TRUSTED_CERTS,COMPUTE_GRAPHICS_MODEL_VIRTIO,COMPUTE_IMAGE_TYPE_ISO" status: 200 len: 1231 microversion: 1.6
2022-03-15 19:03:31,287 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/6042caa8-55c0-4362-8ffe-0ed10e0a3dbd/traits" status: 200 len: 1266 microversion: 1.6
2022-03-15 19:03:31,296 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?name=dest" status: 200 len: 431 microversion: 1.0
2022-03-15 19:03:31,312 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/images/detail" status: 200 len: 5173 microversion: 2.35 time: 0.011608
2022-03-15 19:03:31,331 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/flavors/detail" status: 200 len: 2605 microversion: 2.90 time: 0.016040
2022-03-15 19:03:31,803 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocation_candidates?in_tree=22b12537-34bd-4eaf-b633-3dc36fba4b08&limit=1000&resources=DISK_GB%3A1%2CMEMORY_MB%3A512%2CVCPU%3A1&root_required=%21COMPUTE_STATUS_DISABLED" status: 200 len: 1735 microversion: 1.36
2022-03-15 19:03:31,825 INFO [nova.scheduler.host_manager] Host filter only checking host src and node src
2022-03-15 19:03:31,837 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/43452d2e-6a3d-4ecc-b59d-d863d1d3ac48" status: 200 len: 19 microversion: 1.28
2022-03-15 19:03:31,884 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/allocations/43452d2e-6a3d-4ecc-b59d-d863d1d3ac48" status: 204 len: 0 microversion: 1.36
2022-03-15 19:03:32,034 INFO [nova.api.openstack.requestlog] 127.0.0.1 "POST /v2.1/servers" status: 202 len: 414 microversion: 2.90 time: 0.699953
2022-03-15 19:03:32,135 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/43452d2e-6a3d-4ecc-b59d-d863d1d3ac48" status: 200 len: 230 microversion: 1.28
2022-03-15 19:03:32,139 INFO [nova.compute.claims] Claim successful on node src
2022-03-15 19:03:32,180 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/43452d2e-6a3d-4ecc-b59d-d863d1d3ac48" status: 200 len: 1779 microversion: 2.90 time: 0.142467
2022-03-15 19:03:32,322 INFO [nova.virt.libvirt.driver] Instance spawned successfully.
2022-03-15 19:03:32,323 INFO [nova.compute.manager] Took 0.06 seconds to spawn the instance on the hypervisor.
2022-03-15 19:03:32,369 INFO [nova.scheduler.host_manager] Received an update from an unknown host 'src'. Re-created its InstanceList.
202
2-03-15 19:03:32,373 INFO [nova.compute.manager] Took 0.29 seconds to build instance.
2022-03-15 19:03:32,784 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/43452d2e-6a3d-4ecc-b59d-d863d1d3ac48" status: 200 len: 1868 microversion: 2.90 time: 0.097178
2022-03-15 19:03:32,988 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/43452d2e-6a3d-4ecc-b59d-d863d1d3ac48" status: 200 len: 230 microversion: 1.28
2022-03-15 19:03:32,998 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/43452d2e-6a3d-4ecc-b59d-d863d1d3ac48" status: 200 len: 230 microversion: 1.28
2022-03-15 19:03:33,006 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/ef7fda1b-7f00-4cf0-91ea-c70ac5756157" status: 200 len: 19 microversion: 1.28
2022-03-15 19:03:33,047 INFO [placement.requestlog] 127.0.0.1 "POST /placement/allocations" status: 204 len: 0 microversion: 1.28
2022-03-15 19:03:33,092 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocation_candidates?limit=1000&resources=DISK_GB%3A1%2CMEMORY_MB%3A512%2CVCPU%3A1&root_required=%21COMPUTE_STATUS_DISABLED" status: 200 len: 3423 microversion: 1.36
2022-03-15 19:03:33,127 INFO [nova.scheduler.host_manager] Host filter ignoring hosts: src
2022-03-15 19:03:33,140 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/43452d2e-6a3d-4ecc-b59d-d863d1d3ac48" status: 200 len: 19 microversion: 1.28
2022-03-15 19:03:33,169 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/allocations/43452d2e-6a3d-4ecc-b59d-d863d1d3ac48" status: 204 len: 0 microversion: 1.36
2022-03-15 19:03:33,236 INFO [nova.virt.libvirt.driver] Instance launched has CPU info: {"arch": "x86_64", "model": "Penryn", "vendor": "Intel", "topology": {"cells": 1, "sockets": 1, "cores": 4, "threads": 1}, "features": ["vmx", "tm2", "aes", "xtpr", "tm", "est", "vme", "ht", "pbe", "acpi", "ds", "ss", "monitor", "ds_cpl"]}
2022-03-15 19:03:33,247 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/43452d2e-6a3d-4ecc-b59d-d863d1d3ac48" status: 200 len: 230 microversion: 1.28
2022-03-15 19:03:33,351 INFO [nova.api.openstack.requestlog] 127.0.0.1 "POST /v2.1/servers/43452d2e-6a3d-4ecc-b59d-d863d1d3ac48/action" status: 202 len: 0 microversion: 2.90 time: 0.561437
2022-03-15 19:03:33,440 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/43452d2e-6a3d-4ecc-b59d-d863d1d3ac48" status: 200 len: 1878 microversion: 2.90 time: 0.082163
2022-03-15 19:03:33,477 ERROR [oslo_messaging.rpc.server] Exception during message handling
Traceback (most recent call last):
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/server.py", line 165, in _process_incoming
res = self.dispatcher.dispatch(message)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 309, in dispatch
return self._do_dispatch(endpoint, method, ctxt, args)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 229, in _do_dispatch
result = func(ctxt, **new_args)
File "/home/ubuntu/nova/nova/exception_wrapper.py", line 71, in wrapped
_emit_versioned_exception_notification(
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/exception_wrapper.py", line 63, in wrapped
return f(self, context, *args, **kw)
File "/home/ubuntu/nova/nova/compute/utils.py", line 1437, in decorated_function
return function(self, context, *args, **kwargs)
File "/home/ubuntu/nova/nova/compute/manager.py", line 211, in decorated_function
compute_utils.add_instance_fault_from_exc(context,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/func
tional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/compute/manager.py", line 200, in decorated_function
return function(self, context, *args, **kwargs)
File "/home/ubuntu/nova/nova/compute/manager.py", line 8263, in pre_live_migration
bdm.save()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/compute/manager.py", line 8219, in pre_live_migration
migrate_data = self.driver.pre_live_migration(context,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1100, in __call__
return _mock_self._mock_call(*args, **kwargs)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1104, in _mock_call
return _mock_self._execute_mock_call(*args, **kwargs)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1161, in _execute_mock_call
raise effect
nova.exception.DestinationDiskExists: The supplied disk path (/var/non/existent) already exists, it is expected not to exist.
2022-03-15 19:03:33,488 ERROR [nova.compute.manager] Pre live migration failed at dest
Traceback (most recent call last):
File "/home/ubuntu/nova/nova/compute/manager.py", line 8394, in _do_pre_live_migration_from_source
migrate_data = self.compute_rpcapi.pre_live_migration(
File "/home/ubuntu/nova/nova/compute/rpcapi.py", line 944, in pre_live_migration
return cctxt.call(ctxt, 'pre_live_migration',
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/client.py", line 189, in call
result = self.transport._send(
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/transport.py", line 123, in _send
return self._driver.send(target, ctxt, message,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/_drivers/impl_fake.py", line 222, in send
return self._send(target, ctxt, message, wait_for_reply, timeout,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/_drivers/impl_fake.py", line 209, in _send
raise failure
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/server.py", line 165, in _process_incoming
res = self.dispatcher.dispatch(message)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 309, in dispatch
return self._do_dispatch(endpoint, method, ctxt, args)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 229, in _do_dispatch
result = func(ctxt, **new_args)
File "/home/ubuntu/nova/nova/exception_wrapper.py", line 71, in wrapped
_emit_versioned_exception_notification(
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/exception_wrapper.py", line 63, in wrapped
return f(self, context, *args, **kw)
File "/home/ubuntu/nova/nova/compute/utils.py", line 1437, in decorated_function
return function(self, context, *args, **kwargs)
File "/home/ubuntu/nova/nova/compute/manager.py", line 211, in decorated_function
compute_utils.add_instance_fault_from_exc(context,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200,
in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/compute/manager.py", line 200, in decorated_function
return function(self, context, *args, **kwargs)
File "/home/ubuntu/nova/nova/compute/manager.py", line 8263, in pre_live_migration
bdm.save()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/compute/manager.py", line 8219, in pre_live_migration
migrate_data = self.driver.pre_live_migration(context,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1100, in __call__
return _mock_self._mock_call(*args, **kwargs)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1104, in _mock_call
return _mock_self._execute_mock_call(*args, **kwargs)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1161, in _execute_mock_call
raise effect
nova.exception.DestinationDiskExists: The supplied disk path (/var/non/existent) already exists, it is expected not to exist.
2022-03-15 19:03:33,531 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/os-migrations" status: 200 len: 510 microversion: 2.90 time: 0.086091
2022-03-15 19:03:33,537 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/ef7fda1b-7f00-4cf0-91ea-c70ac5756157" status: 200 len: 230 microversion: 1.28
2022-03-15 19:03:33,539 INFO [nova.compute.manager] Swapping old allocation on dict_keys(['22b12537-34bd-4eaf-b633-3dc36fba4b08']) held by migration ef7fda1b-7f00-4cf0-91ea-c70ac5756157 for instance
2022-03-15 19:03:33,566 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/ef7fda1b-7f00-4cf0-91ea-c70ac5756157" status: 200 len: 230 microversion: 1.28
2022-03-15 19:03:33,580 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/43452d2e-6a3d-4ecc-b59d-d863d1d3ac48" status: 200 len: 230 microversion: 1.28
2022-03-15 19:03:33,593 WARNING [nova.compute.manager] Unable to cancel live migration.
2022-03-15 19:03:33,624 INFO [placement.requestlog] 127.0.0.1 "POST /placement/allocations" status: 204 len: 0 microversion: 1.28
2022-03-15 19:03:33,639 ERROR [root] Original exception being dropped: ['Traceback (most recent call last):\n', ' File "/home/ubuntu/nova/nova/compute/manager.py", line 8394, in _do_pre_live_migration_from_source\n migrate_data = self.compute_rpcapi.pre_live_migration(\n', ' File "/home/ubuntu/nova/nova/compute/rpcapi.py", line 944, in pre_live_migration\n return cctxt.call(ctxt, \'pre_live_migration\',\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/client.py", line 189, in call\n result = self.transport._send(\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/transport.py", line 123, in _send\n return self._driver.send(target, ctxt, message,\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/_drivers/impl_fake.py", line 222, in send\n return self._send(target, ctxt, message, wait_for_reply, timeout,\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/_drivers/impl_fake.py", line 209, in _send\n raise failure\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/server.py", line 165, in _process_incoming\n res = self.dispatcher.dispatch(message)\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 309, in dispatch\n return self._do_dispatch(endpoint, method, ctxt, args)\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 229, in _do_dispatch\n result = func(ctxt, **new_args)\n', ' File "/home/
ubuntu/nova/nova/exception_wrapper.py", line 71, in wrapped\n _emit_versioned_exception_notification(\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__\n self.force_reraise()\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise\n raise self.value\n', ' File "/home/ubuntu/nova/nova/exception_wrapper.py", line 63, in wrapped\n return f(self, context, *args, **kw)\n', ' File "/home/ubuntu/nova/nova/compute/utils.py", line 1437, in decorated_function\n return function(self, context, *args, **kwargs)\n', ' File "/home/ubuntu/nova/nova/compute/manager.py", line 211, in decorated_function\n compute_utils.add_instance_fault_from_exc(context,\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__\n self.force_reraise()\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise\n raise self.value\n', ' File "/home/ubuntu/nova/nova/compute/manager.py", line 200, in decorated_function\n return function(self, context, *args, **kwargs)\n', ' File "/home/ubuntu/nova/nova/compute/manager.py", line 8263, in pre_live_migration\n bdm.save()\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__\n self.force_reraise()\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise\n raise self.value\n', ' File "/home/ubuntu/nova/nova/compute/manager.py", line 8219, in pre_live_migration\n migrate_data = self.driver.pre_live_migration(context,\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1100, in __call__\n return _mock_self._mock_call(*args, **kwargs)\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1104, in _mock_call\n return _mock_self._execute_mock_call(*args, **kwargs)\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1161, in _execute_mock_call\n raise effect\n', 'nova.exception.DestinationDiskExists: The supplied disk path (/var/non/existent) already exists, it is expected not to exist.\n']
{40} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [4.566284s] ... ok
{34} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [4.133278s] ... ok
{31} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [4.283533s] ... ok
{40} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.599372s] ... ok
==============================
Failed 1 tests - output below:
==============================
nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration
------------------------------------------------------------------------------------------------------------------
Captured traceback:
~~~~~~~~~~~~~~~~~~
Traceback (most recent call last):
File "/home/ubuntu/nova/nova/tests/functional/regressions/test_bug_1944619.py", line 87, in test_rollback_pre_live_migration
self.libvirt_mock.mock.assert_called_once()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 891, in assert_called_once
raise AssertionError(msg)
AssertionError: Expected 'rollback_live_migration_at_source' to have been called once. Called 0 times.
Captured pythonlogging:
~~~~~~~~~~~~~~~~~~~~~~
2022-03-15 19:03:28,657 WARNING [oslo_policy.policy] JSON formatted policy_file support is deprecated since Victoria release. You need to use YAML format which will be default in future. You can use ``oslopolicy-convert-json-to-yaml`` tool to convert existing JSON-formatted policy file to YAML-formatted in backward compatible way: https://docs.openstack.org/oslo.policy/latest/cli/oslopolicy-convert-json-to-yaml.html.
2022-03-15 19:03:28,662 WARNING [oslo_policy.policy] JSON formatted policy_file support is deprecated since Victoria release. You need to use YAML format which will be default in future. You can use ``oslopolicy-convert-json-to-yaml`` tool to convert existing JSON-formatted policy file to YAML-formatted in backward compatible way: https://docs.openstack.org/oslo.policy/latest/cli/oslopolicy-convert-json-to-yaml.html.
2022-03-15 19:03:28,665 WARNING [oslo_policy.policy] Policy Rules ['os_compute_api:extensions', 'os_compute_api:os-floating-ip-pools', 'os_compute_api:os-quota-sets:defaults', 'os_compute_api:os-availability-zone:list', 'os_compute_api:limits', 'system_admin_api', 'system_reader_api', 'project_admin_api', 'project_member_api', 'project_reader_api', 'system_admin_or_owner', 'system_or_project_reader', 'os_compute_api:limits:other_project', 'os_compute_api:os-lock-server:unlock:unlock_override', 'os_compute_api:servers:create:zero_disk_flavor', 'compute:servers:resize:cross_cell'] specified in policy files are the same as the defaults provided by the service. You can remove these rules from policy files which will make maintenance easier. You can detect these redundant rules by ``oslopolicy-list-redundant`` tool also.
2022-03-15 19:03:28,671 WARNING [placement.db_api] TransactionFactory already started, not reconfiguring.
2022-03-15 19:03:28,796 INFO [nova.service] Starting conductor node (version 24.1.0)
2022-03-15 19:03:28,863 INFO [nova.service] Starting scheduler node (version 24.1.0)
2022-03-15 19:03:30,873 INFO [os_vif] Loaded VIF plugins: linux_bridge, noop, ovs
2022-03-15 19:03:30,914 INFO [nova.virt.driver] Loading compute driver 'libvirt.LibvirtDriver'
2022-03-15 19:03:30,917 INFO [nova.compute.provider_config] No provider configs found in /etc/nova/provider_config/. If files are present, ensure the Nova process has access.
2022-03-15 19:03:30,926 INFO [nova.service] Starting compute node (version 24.1.0)
2022-03-15 19:03:30,940 INFO [nova.virt.libvirt.host] Secure Boot support detected
2022-03-15 19:03:30,942 WARNING [nova.virt.libvirt.driver] my_ip address (10.230.62.178) was not found on any of the interfaces:
2022-03-15 19:03:30,942 WARNING [nova.virt.libvirt.driver] Running Nova with a libvirt version less than 7.0.0 is deprecated. The required minimum version of libvirt will be raised to 7.0.0 in the next release.
2022-03-15 19:03:30,943 WARNING [nova.virt.libvirt.driver] Running Nova with a QEMU version less than 5.2.0 is deprecated. The required minimum version of QEMU will be raised to 5.2.0 in the next release.
2022-03-15 19:03:30,978 WARNING [nova.compute.manager] Compute node src not found in the database. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 19:03:30,983 INFO [nova.compute.manager] Looking for unclaimed instances stuck in BUILDING status for nodes managed by this host
2022-03-15 19:03:30,996 WARNING [nova.compute.manager] No compute node record found for host src. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 19:03:31,002 WARNING [nova.compute.resource_tracker] No compute node record for src:src
2022-03-15 19:03:31,007 INFO [nova.compute.resource_tracker] Compute node record created for src:src with uuid: 22b12537-34bd-4eaf-b633-3dc36fba4b08
2022-03-15 19:03:31,058 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?in_tree=22b12537-34bd-4eaf-b633-3dc36fba4b08" status: 200 len: 26 microversion: 1.14
2022-03-15 19:03:31,069 INFO [placement.requestlog] 127.0.0.1 "POST /placement/resource_providers" status: 200 len: 826 m
icroversion: 1.20
2022-03-15 19:03:31,070 INFO [nova.scheduler.client.report] [req-f8392ec9-6b0e-4716-9295-53cbc9ca5bd4] Created resource provider record via placement API for resource provider with UUID 22b12537-34bd-4eaf-b633-3dc36fba4b08 and name src.
2022-03-15 19:03:31,070 INFO [nova.virt.libvirt.host] kernel doesn't support AMD SEV
2022-03-15 19:03:31,094 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/22b12537-34bd-4eaf-b633-3dc36fba4b08/inventories" status: 200 len: 407 microversion: 1.26
2022-03-15 19:03:31,106 INFO [placement.requestlog] 127.0.0.1 "GET /placement/traits?name=in:COMPUTE_VOLUME_ATTACH_WITH_TAG,COMPUTE_ACCELERATORS,COMPUTE_VOLUME_EXTEND,COMPUTE_NET_VIF_MODEL_NE2K_PCI,COMPUTE_NET_VIF_MODEL_SPAPR_VLAN,COMPUTE_GRAPHICS_MODEL_CIRRUS,COMPUTE_IMAGE_TYPE_ARI,COMPUTE_NET_VIF_MODEL_VIRTIO,COMPUTE_STORAGE_BUS_VIRTIO,HW_CPU_X86_AESNI,COMPUTE_STORAGE_BUS_USB,COMPUTE_GRAPHICS_MODEL_BOCHS,COMPUTE_NET_ATTACH_INTERFACE,COMPUTE_NET_VIF_MODEL_RTL8139,COMPUTE_STORAGE_BUS_IDE,COMPUTE_GRAPHICS_MODEL_VMVGA,COMPUTE_IMAGE_TYPE_QCOW2,COMPUTE_NET_VIF_MODEL_PCNET,COMPUTE_GRAPHICS_MODEL_VGA,COMPUTE_NET_VIF_MODEL_E1000,COMPUTE_IMAGE_TYPE_AKI,COMPUTE_NODE,HW_CPU_X86_VMX,COMPUTE_STORAGE_BUS_SCSI,COMPUTE_SECURITY_UEFI_SECURE_BOOT,COMPUTE_GRAPHICS_MODEL_QXL,COMPUTE_NET_VIF_MODEL_E1000E,COMPUTE_IMAGE_TYPE_RAW,COMPUTE_IMAGE_TYPE_AMI,COMPUTE_STORAGE_BUS_SATA,COMPUTE_NET_ATTACH_INTERFACE_WITH_TAG,COMPUTE_DEVICE_TAGGING,COMPUTE_STORAGE_BUS_FDC,COMPUTE_GRAPHICS_MODEL_NONE,COMPUTE_NET_VIF_MODEL_VMXNET3,COMPUTE_VOLUME_MULTI_ATTACH,COMPUTE_RESCUE_BFV,HW_CPU_X86_INTEL_VMX,COMPUTE_SOCKET_PCI_NUMA_AFFINITY,COMPUTE_TRUSTED_CERTS,COMPUTE_GRAPHICS_MODEL_VIRTIO,COMPUTE_IMAGE_TYPE_ISO" status: 200 len: 1231 microversion: 1.6
2022-03-15 19:03:31,134 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/22b12537-34bd-4eaf-b633-3dc36fba4b08/traits" status: 200 len: 1266 microversion: 1.6
2022-03-15 19:03:31,145 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?name=src" status: 200 len: 430 microversion: 1.0
2022-03-15 19:03:31,155 INFO [nova.virt.driver] Loading compute driver 'libvirt.LibvirtDriver'
2022-03-15 19:03:31,157 INFO [nova.compute.provider_config] No provider configs found in /etc/nova/provider_config/. If files are present, ensure the Nova process has access.
2022-03-15 19:03:31,163 INFO [nova.service] Starting compute node (version 24.1.0)
2022-03-15 19:03:31,173 INFO [nova.virt.libvirt.host] Secure Boot support detected
2022-03-15 19:03:31,173 WARNING [nova.virt.libvirt.driver] my_ip address (10.230.62.178) was not found on any of the interfaces:
2022-03-15 19:03:31,174 WARNING [nova.virt.libvirt.driver] Running Nova with a libvirt version less than 7.0.0 is deprecated. The required minimum version of libvirt will be raised to 7.0.0 in the next release.
2022-03-15 19:03:31,174 WARNING [nova.virt.libvirt.driver] Running Nova with a QEMU version less than 5.2.0 is deprecated. The required minimum version of QEMU will be raised to 5.2.0 in the next release.
2022-03-15 19:03:31,181 WARNING [nova.compute.manager] Compute node dest not found in the database. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 19:03:31,184 INFO [nova.compute.manager] Looking for unclaimed instances stuck in BUILDING status for nodes managed by this host
2022-03-15 19:03:31,192 WARNING [nova.compute.manager] No compute node record found for host dest. If this is the first time this service is starting on this host, then you can ignore this warning.
2022-03-15 19:03:31,197 WARNING [nova.compute.resource_tracker] No compute node record for dest:dest
2022-03-15 19:03:31,201 INFO [nova.compute.resource_tracker] Compute node record created for dest:dest with uuid: 6042caa8-55c0-4362-8ffe-0ed10e0a3dbd
2022-03-15 19:03:31,223 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?in_tree=6042caa8-55c0-4362-8ffe-0ed10e0a3dbd" status: 200 len: 26 microversion: 1.14
2022-03-15 19:03:31,231 INFO [placement.requestlog] 127.0.0.1
"POST /placement/resource_providers" status: 200 len: 827 microversion: 1.20
2022-03-15 19:03:31,232 INFO [nova.scheduler.client.report] [req-6d6ba925-0489-47aa-904e-8e835047422a] Created resource provider record via placement API for resource provider with UUID 6042caa8-55c0-4362-8ffe-0ed10e0a3dbd and name dest.
2022-03-15 19:03:31,233 INFO [nova.virt.libvirt.host] kernel doesn't support AMD SEV
2022-03-15 19:03:31,251 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/6042caa8-55c0-4362-8ffe-0ed10e0a3dbd/inventories" status: 200 len: 407 microversion: 1.26
2022-03-15 19:03:31,261 INFO [placement.requestlog] 127.0.0.1 "GET /placement/traits?name=in:COMPUTE_VOLUME_ATTACH_WITH_TAG,COMPUTE_ACCELERATORS,COMPUTE_VOLUME_EXTEND,COMPUTE_NET_VIF_MODEL_NE2K_PCI,COMPUTE_NET_VIF_MODEL_SPAPR_VLAN,COMPUTE_GRAPHICS_MODEL_CIRRUS,COMPUTE_IMAGE_TYPE_ARI,COMPUTE_NET_VIF_MODEL_VIRTIO,COMPUTE_STORAGE_BUS_VIRTIO,HW_CPU_X86_AESNI,COMPUTE_STORAGE_BUS_USB,COMPUTE_GRAPHICS_MODEL_BOCHS,COMPUTE_NET_ATTACH_INTERFACE,COMPUTE_NET_VIF_MODEL_RTL8139,COMPUTE_STORAGE_BUS_IDE,COMPUTE_GRAPHICS_MODEL_VMVGA,COMPUTE_IMAGE_TYPE_QCOW2,COMPUTE_NET_VIF_MODEL_PCNET,COMPUTE_GRAPHICS_MODEL_VGA,COMPUTE_NET_VIF_MODEL_E1000,COMPUTE_IMAGE_TYPE_AKI,COMPUTE_NODE,HW_CPU_X86_VMX,COMPUTE_STORAGE_BUS_SCSI,COMPUTE_SECURITY_UEFI_SECURE_BOOT,COMPUTE_GRAPHICS_MODEL_QXL,COMPUTE_NET_VIF_MODEL_E1000E,COMPUTE_IMAGE_TYPE_RAW,COMPUTE_IMAGE_TYPE_AMI,COMPUTE_STORAGE_BUS_SATA,COMPUTE_NET_ATTACH_INTERFACE_WITH_TAG,COMPUTE_DEVICE_TAGGING,COMPUTE_STORAGE_BUS_FDC,COMPUTE_GRAPHICS_MODEL_NONE,COMPUTE_NET_VIF_MODEL_VMXNET3,COMPUTE_VOLUME_MULTI_ATTACH,COMPUTE_RESCUE_BFV,HW_CPU_X86_INTEL_VMX,COMPUTE_SOCKET_PCI_NUMA_AFFINITY,COMPUTE_TRUSTED_CERTS,COMPUTE_GRAPHICS_MODEL_VIRTIO,COMPUTE_IMAGE_TYPE_ISO" status: 200 len: 1231 microversion: 1.6
2022-03-15 19:03:31,287 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/resource_providers/6042caa8-55c0-4362-8ffe-0ed10e0a3dbd/traits" status: 200 len: 1266 microversion: 1.6
2022-03-15 19:03:31,296 INFO [placement.requestlog] 127.0.0.1 "GET /placement/resource_providers?name=dest" status: 200 len: 431 microversion: 1.0
2022-03-15 19:03:31,312 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/images/detail" status: 200 len: 5173 microversion: 2.35 time: 0.011608
2022-03-15 19:03:31,331 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/flavors/detail" status: 200 len: 2605 microversion: 2.90 time: 0.016040
2022-03-15 19:03:31,803 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocation_candidates?in_tree=22b12537-34bd-4eaf-b633-3dc36fba4b08&limit=1000&resources=DISK_GB%3A1%2CMEMORY_MB%3A512%2CVCPU%3A1&root_required=%21COMPUTE_STATUS_DISABLED" status: 200 len: 1735 microversion: 1.36
2022-03-15 19:03:31,825 INFO [nova.scheduler.host_manager] Host filter only checking host src and node src
2022-03-15 19:03:31,837 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/43452d2e-6a3d-4ecc-b59d-d863d1d3ac48" status: 200 len: 19 microversion: 1.28
2022-03-15 19:03:31,884 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/allocations/43452d2e-6a3d-4ecc-b59d-d863d1d3ac48" status: 204 len: 0 microversion: 1.36
2022-03-15 19:03:32,034 INFO [nova.api.openstack.requestlog] 127.0.0.1 "POST /v2.1/servers" status: 202 len: 414 microversion: 2.90 time: 0.699953
2022-03-15 19:03:32,135 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/43452d2e-6a3d-4ecc-b59d-d863d1d3ac48" status: 200 len: 230 microversion: 1.28
2022-03-15 19:03:32,139 INFO [nova.compute.claims] Claim successful on node src
2022-03-15 19:03:32,180 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/43452d2e-6a3d-4ecc-b59d-d863d1d3ac48" status: 200 len: 1779 microversion: 2.90 time: 0.142467
2022-03-15 19:03:32,322 INFO [nova.virt.libvirt.driver] Instance spawned successfully.
2022-03-15 19:03:32,323 INFO [nova.compute.manager] Took 0.06 seconds to spawn the instance on the hypervisor.
2022-03-15 19:03:32,369 INFO [nova.scheduler.host_manager] Received an update from an unknown host 'src'. Re-created its InstanceList.
202
2-03-15 19:03:32,373 INFO [nova.compute.manager] Took 0.29 seconds to build instance.
2022-03-15 19:03:32,784 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/43452d2e-6a3d-4ecc-b59d-d863d1d3ac48" status: 200 len: 1868 microversion: 2.90 time: 0.097178
2022-03-15 19:03:32,988 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/43452d2e-6a3d-4ecc-b59d-d863d1d3ac48" status: 200 len: 230 microversion: 1.28
2022-03-15 19:03:32,998 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/43452d2e-6a3d-4ecc-b59d-d863d1d3ac48" status: 200 len: 230 microversion: 1.28
2022-03-15 19:03:33,006 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/ef7fda1b-7f00-4cf0-91ea-c70ac5756157" status: 200 len: 19 microversion: 1.28
2022-03-15 19:03:33,047 INFO [placement.requestlog] 127.0.0.1 "POST /placement/allocations" status: 204 len: 0 microversion: 1.28
2022-03-15 19:03:33,092 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocation_candidates?limit=1000&resources=DISK_GB%3A1%2CMEMORY_MB%3A512%2CVCPU%3A1&root_required=%21COMPUTE_STATUS_DISABLED" status: 200 len: 3423 microversion: 1.36
2022-03-15 19:03:33,127 INFO [nova.scheduler.host_manager] Host filter ignoring hosts: src
2022-03-15 19:03:33,140 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/43452d2e-6a3d-4ecc-b59d-d863d1d3ac48" status: 200 len: 19 microversion: 1.28
2022-03-15 19:03:33,169 INFO [placement.requestlog] 127.0.0.1 "PUT /placement/allocations/43452d2e-6a3d-4ecc-b59d-d863d1d3ac48" status: 204 len: 0 microversion: 1.36
2022-03-15 19:03:33,236 INFO [nova.virt.libvirt.driver] Instance launched has CPU info: {"arch": "x86_64", "model": "Penryn", "vendor": "Intel", "topology": {"cells": 1, "sockets": 1, "cores": 4, "threads": 1}, "features": ["vmx", "tm2", "aes", "xtpr", "tm", "est", "vme", "ht", "pbe", "acpi", "ds", "ss", "monitor", "ds_cpl"]}
2022-03-15 19:03:33,247 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/43452d2e-6a3d-4ecc-b59d-d863d1d3ac48" status: 200 len: 230 microversion: 1.28
2022-03-15 19:03:33,351 INFO [nova.api.openstack.requestlog] 127.0.0.1 "POST /v2.1/servers/43452d2e-6a3d-4ecc-b59d-d863d1d3ac48/action" status: 202 len: 0 microversion: 2.90 time: 0.561437
2022-03-15 19:03:33,440 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/servers/43452d2e-6a3d-4ecc-b59d-d863d1d3ac48" status: 200 len: 1878 microversion: 2.90 time: 0.082163
2022-03-15 19:03:33,477 ERROR [oslo_messaging.rpc.server] Exception during message handling
Traceback (most recent call last):
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/server.py", line 165, in _process_incoming
res = self.dispatcher.dispatch(message)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 309, in dispatch
return self._do_dispatch(endpoint, method, ctxt, args)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 229, in _do_dispatch
result = func(ctxt, **new_args)
File "/home/ubuntu/nova/nova/exception_wrapper.py", line 71, in wrapped
_emit_versioned_exception_notification(
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/exception_wrapper.py", line 63, in wrapped
return f(self, context, *args, **kw)
File "/home/ubuntu/nova/nova/compute/utils.py", line 1437, in decorated_function
return function(self, context, *args, **kwargs)
File "/home/ubuntu/nova/nova/compute/manager.py", line 211, in decorated_function
compute_utils.add_instance_fault_from_exc(context,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/func
tional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/compute/manager.py", line 200, in decorated_function
return function(self, context, *args, **kwargs)
File "/home/ubuntu/nova/nova/compute/manager.py", line 8263, in pre_live_migration
bdm.save()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/compute/manager.py", line 8219, in pre_live_migration
migrate_data = self.driver.pre_live_migration(context,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1100, in __call__
return _mock_self._mock_call(*args, **kwargs)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1104, in _mock_call
return _mock_self._execute_mock_call(*args, **kwargs)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1161, in _execute_mock_call
raise effect
nova.exception.DestinationDiskExists: The supplied disk path (/var/non/existent) already exists, it is expected not to exist.
2022-03-15 19:03:33,488 ERROR [nova.compute.manager] Pre live migration failed at dest
Traceback (most recent call last):
File "/home/ubuntu/nova/nova/compute/manager.py", line 8394, in _do_pre_live_migration_from_source
migrate_data = self.compute_rpcapi.pre_live_migration(
File "/home/ubuntu/nova/nova/compute/rpcapi.py", line 944, in pre_live_migration
return cctxt.call(ctxt, 'pre_live_migration',
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/client.py", line 189, in call
result = self.transport._send(
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/transport.py", line 123, in _send
return self._driver.send(target, ctxt, message,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/_drivers/impl_fake.py", line 222, in send
return self._send(target, ctxt, message, wait_for_reply, timeout,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/_drivers/impl_fake.py", line 209, in _send
raise failure
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/server.py", line 165, in _process_incoming
res = self.dispatcher.dispatch(message)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 309, in dispatch
return self._do_dispatch(endpoint, method, ctxt, args)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 229, in _do_dispatch
result = func(ctxt, **new_args)
File "/home/ubuntu/nova/nova/exception_wrapper.py", line 71, in wrapped
_emit_versioned_exception_notification(
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/exception_wrapper.py", line 63, in wrapped
return f(self, context, *args, **kw)
File "/home/ubuntu/nova/nova/compute/utils.py", line 1437, in decorated_function
return function(self, context, *args, **kwargs)
File "/home/ubuntu/nova/nova/compute/manager.py", line 211, in decorated_function
compute_utils.add_instance_fault_from_exc(context,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200,
in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/compute/manager.py", line 200, in decorated_function
return function(self, context, *args, **kwargs)
File "/home/ubuntu/nova/nova/compute/manager.py", line 8263, in pre_live_migration
bdm.save()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__
self.force_reraise()
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise
raise self.value
File "/home/ubuntu/nova/nova/compute/manager.py", line 8219, in pre_live_migration
migrate_data = self.driver.pre_live_migration(context,
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1100, in __call__
return _mock_self._mock_call(*args, **kwargs)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1104, in _mock_call
return _mock_self._execute_mock_call(*args, **kwargs)
File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1161, in _execute_mock_call
raise effect
nova.exception.DestinationDiskExists: The supplied disk path (/var/non/existent) already exists, it is expected not to exist.
2022-03-15 19:03:33,531 INFO [nova.api.openstack.requestlog] 127.0.0.1 "GET /v2.1/os-migrations" status: 200 len: 510 microversion: 2.90 time: 0.086091
2022-03-15 19:03:33,537 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/ef7fda1b-7f00-4cf0-91ea-c70ac5756157" status: 200 len: 230 microversion: 1.28
2022-03-15 19:03:33,539 INFO [nova.compute.manager] Swapping old allocation on dict_keys(['22b12537-34bd-4eaf-b633-3dc36fba4b08']) held by migration ef7fda1b-7f00-4cf0-91ea-c70ac5756157 for instance
2022-03-15 19:03:33,566 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/ef7fda1b-7f00-4cf0-91ea-c70ac5756157" status: 200 len: 230 microversion: 1.28
2022-03-15 19:03:33,580 INFO [placement.requestlog] 127.0.0.1 "GET /placement/allocations/43452d2e-6a3d-4ecc-b59d-d863d1d3ac48" status: 200 len: 230 microversion: 1.28
2022-03-15 19:03:33,593 WARNING [nova.compute.manager] Unable to cancel live migration.
2022-03-15 19:03:33,624 INFO [placement.requestlog] 127.0.0.1 "POST /placement/allocations" status: 204 len: 0 microversion: 1.28
2022-03-15 19:03:33,639 ERROR [root] Original exception being dropped: ['Traceback (most recent call last):\n', ' File "/home/ubuntu/nova/nova/compute/manager.py", line 8394, in _do_pre_live_migration_from_source\n migrate_data = self.compute_rpcapi.pre_live_migration(\n', ' File "/home/ubuntu/nova/nova/compute/rpcapi.py", line 944, in pre_live_migration\n return cctxt.call(ctxt, \'pre_live_migration\',\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/client.py", line 189, in call\n result = self.transport._send(\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/transport.py", line 123, in _send\n return self._driver.send(target, ctxt, message,\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/_drivers/impl_fake.py", line 222, in send\n return self._send(target, ctxt, message, wait_for_reply, timeout,\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/_drivers/impl_fake.py", line 209, in _send\n raise failure\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/server.py", line 165, in _process_incoming\n res = self.dispatcher.dispatch(message)\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 309, in dispatch\n return self._do_dispatch(endpoint, method, ctxt, args)\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_messaging/rpc/dispatcher.py", line 229, in _do_dispatch\n result = func(ctxt, **new_args)\n', ' File "/home/
ubuntu/nova/nova/exception_wrapper.py", line 71, in wrapped\n _emit_versioned_exception_notification(\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__\n self.force_reraise()\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise\n raise self.value\n', ' File "/home/ubuntu/nova/nova/exception_wrapper.py", line 63, in wrapped\n return f(self, context, *args, **kw)\n', ' File "/home/ubuntu/nova/nova/compute/utils.py", line 1437, in decorated_function\n return function(self, context, *args, **kwargs)\n', ' File "/home/ubuntu/nova/nova/compute/manager.py", line 211, in decorated_function\n compute_utils.add_instance_fault_from_exc(context,\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__\n self.force_reraise()\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise\n raise self.value\n', ' File "/home/ubuntu/nova/nova/compute/manager.py", line 200, in decorated_function\n return function(self, context, *args, **kwargs)\n', ' File "/home/ubuntu/nova/nova/compute/manager.py", line 8263, in pre_live_migration\n bdm.save()\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 227, in __exit__\n self.force_reraise()\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/oslo_utils/excutils.py", line 200, in force_reraise\n raise self.value\n', ' File "/home/ubuntu/nova/nova/compute/manager.py", line 8219, in pre_live_migration\n migrate_data = self.driver.pre_live_migration(context,\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1100, in __call__\n return _mock_self._mock_call(*args, **kwargs)\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1104, in _mock_call\n return _mock_self._execute_mock_call(*args, **kwargs)\n', ' File "/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/mock/mock.py", line 1161, in _execute_mock_call\n raise effect\n', 'nova.exception.DestinationDiskExists: The supplied disk path (/var/non/existent) already exists, it is expected not to exist.\n']
======
Totals
======
Ran: 116 tests in 12.6868 sec.
- Passed: 114
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 1
Sum of execute time for each test: 549.9458 sec.
==============
Worker Balance
==============
- Worker 0 (2 tests) => 0:00:10.902202
- Worker 1 (2 tests) => 0:00:09.476253
- Worker 2 (2 tests) => 0:00:10.044413
- Worker 3 (2 tests) => 0:00:09.873889
- Worker 4 (2 tests) => 0:00:09.462328
- Worker 5 (2 tests) => 0:00:09.668459
- Worker 6 (2 tests) => 0:00:09.972296
- Worker 7 (2 tests) => 0:00:08.045030
- Worker 8 (2 tests) => 0:00:10.446612
- Worker 9 (2 tests) => 0:00:07.115037
- Worker 10 (2 tests) => 0:00:08.006026
- Worker 11 (2 tests) => 0:00:09.863944
- Worker 12 (2 tests) => 0:00:07.402467
- Worker 13 (2 tests) => 0:00:07.350905
- Worker 14 (2 tests) => 0:00:11.158698
- Worker 15 (2 tests) => 0:00:11.293544
- Worker 16 (2 tests) => 0:00:11.633963
- Worker 17 (2 tests) => 0:00:11.435977
- Worker 18 (2 tests) => 0:00:10.604988
- Worker 19 (2 tests) => 0:00:08.720568
- Worker 20 (2 tests) => 0:00:09.668889
- Worker 21 (2 tests) => 0:00:10.189273
- Worker 22 (2 tests) => 0:00:11.768882
- Worker 23 (2 tests) => 0:00:11.234066
- Worker 24 (2 tests) => 0:00:07.746778
- Worker 25 (2 tests) => 0:00:11.147877
- Worker 26 (2 tests) => 0:00:06.470964
- Worker 27 (2 tests) => 0:00:10.060015
- Worker 28 (2 tests) => 0:00:10.651632
- Worker 29 (2 tests) => 0:00:07.981906
- Worker 30 (2 tests) => 0:00:09.931782
- Worker 31 (2 tests) => 0:00:11.931649
- Worker 32 (2 tests) => 0:00:09.309129
- Worker 33 (2 tests) => 0:00:11.516130
- Worker 34 (2 tests) => 0:00:11.757641
- Worker 35 (2 tests) => 0:00:10.041310
- Worker 36 (2 tests) => 0:00:10.042248
- Worker 37 (3 tests) => 0:00:10.143095
- Worker 38 (2 tests) => 0:00:11.467733
- Worker 39 (3 tests) => 0:00:08.876768
- Worker 40 (3 tests) => 0:00:12.118821
- Worker 41 (3 tests) => 0:00:10.626190
- Worker 42 (2 tests) => 0:00:08.079423
- Worker 43 (2 tests) => 0:00:08.169599
- Worker 44 (2 tests) => 0:00:08.097892
- Worker 45 (2 tests) => 0:00:09.444586
- Worker 46 (2 tests) => 0:00:09.440986
- Worker 47 (2 tests) => 0:00:09.890136
- Worker 48 (2 tests) => 0:00:10.190898
- Worker 49 (2 tests) => 0:00:09.482930
- Worker 50 (2 tests) => 0:00:11.042349
- Worker 51 (2 tests) => 0:00:09.511462
- Worker 52 (2 tests) => 0:00:10.337424
- Worker 53 (2 tests) => 0:00:07.922518
- Worker 54 (2 tests) => 0:00:10.048658
- Worker 55 (2 tests) => 0:00:11.228534
ERROR: InvocationError for command /home/ubuntu/nova/.tox/functional-py39/bin/stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions (exited with code 1)
__________________________________________________________________________________ summary __________________________________________________________________________________
ERROR: functional-py39: commands failed
Tox run 19
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/easy_install.py:160: EasyInstallDeprecationWarning: easy_install command is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
/home/ubuntu/nova/.tox/functional-py39/lib/python3.9/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
warnings.warn(
functional-py39 develop-inst-noop: /home/ubuntu/nova
functional-py39 installed: alembic==1.7.6,amqp==5.0.9,appdirs==1.4.4,attrs==21.4.0,automaton==2.5.0,autopage==0.5.0,bandit==1.7.4,bcrypt==3.2.0,cachetools==5.0.0,castellan==3.10.1,certifi==2021.10.8,cffi==1.15.0,charset-normalizer==2.0.12,cliff==3.10.1,cmd2==2.4.0,colorama==0.4.4,coverage==6.3.2,cryptography==36.0.1,cursive==0.2.2,ddt==1.4.4,debtcollector==2.4.0,decorator==5.1.1,dnspython==2.1.0,dogpile.cache==1.1.5,eventlet==0.33.0,extras==1.0.0,fasteners==0.17.3,fixtures==3.0.0,flake8==3.8.4,future==0.18.2,futurist==2.4.0,gabbi==2.4.0,gitdb==4.0.9,GitPython==3.1.27,greenlet==1.1.2,hacking==3.1.0,idna==3.3,iniconfig==1.1.1,iso8601==1.0.2,Jinja2==3.0.3,jmespath==0.10.0,jsonpatch==1.32,jsonpath-rw==1.4.0,jsonpath-rw-ext==1.2.2,jsonpointer==2.2,jsonschema==3.2.0,keystoneauth1==4.5.0,keystonemiddleware==9.4.0,kombu==5.2.4,lxml==4.8.0,Mako==1.1.6,MarkupSafe==2.1.1,mccabe==0.6.1,microversion-parse==1.0.1,mock==4.0.3,msgpack==1.0.3,munch==2.5.0,mypy==0.931,mypy-extensions==0.4.3,netaddr==0.8.0,netifaces==0.11.0,networkx==2.7.1,-e git+https://review.opendev.org/openstack/nova@d43538712c034023bdb3e25cd7adfdee409ed596#egg=nova,numpy==1.22.3,openstack-placement==6.0.0,openstacksdk==0.61.0,os-brick==5.2.0,os-client-config==2.1.0,os-resource-classes==1.1.0,os-service-types==1.7.0,os-traits==2.7.0,os-vif==2.7.1,os-win==5.6.0,osc-lib==2.5.0,oslo.cache==2.10.1,oslo.concurrency==4.5.0,oslo.config==8.8.0,oslo.context==4.1.0,oslo.db==11.2.0,oslo.i18n==5.1.0,oslo.log==4.7.0,oslo.messaging==12.13.0,oslo.metrics==0.4.0,oslo.middleware==4.5.1,oslo.policy==3.11.0,oslo.privsep==2.7.0,oslo.reports==2.3.0,oslo.rootwrap==6.3.1,oslo.serialization==4.3.0,oslo.service==2.8.0,oslo.upgradecheck==1.5.0,oslo.utils==4.12.2,oslo.versionedobjects==2.6.0,oslotest==4.5.0,osprofiler==3.4.2,ovs==2.16.0,ovsdbapp==1.15.1,packaging==21.3,paramiko==2.8.1,Paste==3.5.0,PasteDeploy==2.1.1,pbr==5.8.1,pluggy==1.0.0,ply==3.11,prettytable==3.2.0,prometheus-client==0.13.1,psutil==5.9.0,psycopg2-binary==2.9.3,py==1.11.0,pycadf==3.1.1,pycodestyle==2.6.0,pycparser==2.21,pydot==1.4.2,pyflakes==2.2.0,pyinotify==0.9.6,PyMySQL==1.0.2,PyNaCl==1.5.0,pyOpenSSL==22.0.0,pyparsing==3.0.7,pyperclip==1.8.2,pyroute2==0.6.6,pyroute2.core==0.6.6,pyroute2.ethtool==0.6.6,pyroute2.ipdb==0.6.6,pyroute2.ipset==0.6.6,pyroute2.ndb==0.6.6,pyroute2.nftables==0.6.6,pyroute2.nslink==0.6.6,pyrsistent==0.18.1,pytest==7.0.1,python-barbicanclient==5.3.0,python-cinderclient==8.3.0,python-dateutil==2.8.2,python-glanceclient==3.6.0,python-ironicclient==4.11.0,python-keystoneclient==4.4.0,python-neutronclient==7.8.0,python-subunit==1.4.0,pytz==2021.3,PyYAML==6.0,repoze.lru==0.7,requests==2.27.1,requests-mock==1.9.3,requestsexceptions==1.4.0,retrying==1.3.3,rfc3986==1.5.0,Routes==2.5.1,simplejson==3.17.6,six==1.16.0,smmap==5.0.0,sortedcontainers==2.4.0,SQLAlchemy==1.4.31,sqlalchemy-migrate==0.13.0,sqlparse==0.4.2,statsd==3.3.0,stestr==3.2.1,stevedore==3.5.0,taskflow==4.6.4,Tempita==0.5.2,tenacity==6.3.1,testresources==2.0.1,testscenarios==0.5.0,testtools==2.5.0,tomli==2.0.1,tooz==2.10.1,types-cryptography==3.3.15,types-enum34==1.1.8,types-ipaddress==1.0.8,types-paramiko==2.8.13,typing_extensions==4.1.1,urllib3==1.26.8,vine==5.0.0,voluptuous==0.12.2,warlock==1.3.3,wcwidth==0.2.5,WebOb==1.8.7,websockify==0.10.0,wrapt==1.13.3,wsgi-intercept==1.9.3,yappi==1.3.3
functional-py39 run-test-pre: PYTHONHASHSEED='2522968669'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
2022-03-15 19:03:52.561 550036 INFO oslo_service.periodic_task [req-daeb45a4-a7cb-4837-bec5-36a7586dca5b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:52.566 550034 INFO oslo_service.periodic_task [req-3ad72450-98b6-4eea-af54-2791b1ab18af - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:52.613 550032 INFO oslo_service.periodic_task [req-37448084-5ce0-4ca8-ac0f-5f8dc89889a6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:52.691 550028 INFO oslo_service.periodic_task [req-3438a8d0-67b3-4c9f-a652-50806a0d038a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:52.709 550022 INFO oslo_service.periodic_task [req-c66879fe-0e55-45b2-8b37-fc13548fe98d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:52.709 550044 INFO oslo_service.periodic_task [req-aa04caef-8515-4a8e-9ffa-ce49203a6307 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:52.715 550038 INFO oslo_service.periodic_task [req-9366ba98-6c9b-4b1b-9dec-8483444adefa - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:52.729 550098 INFO oslo_service.periodic_task [req-7628b8e3-f206-408f-96eb-eb3c15939ee3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:52.743 550046 INFO oslo_service.periodic_task [req-0653366d-c5ec-4916-9824-5549e8b400d5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:52.763 550040 INFO oslo_service.periodic_task [req-4bcc060a-070d-4817-a552-962d3242509c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:52.786 550070 INFO oslo_service.periodic_task [req-d1183ec3-bb0e-46e3-bc45-5aa0677570f5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:52.789 550056 INFO oslo_service.periodic_task [req-18ab1f89-050f-4e55-9efc-5c0b6ad3f3c7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:52.796 550018 INFO oslo_service.periodic_task [req-aa5aad54-583d-4f50-ab28-cbb34043843b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:52.804 550026 INFO oslo_service.periodic_task [req-260a14e8-db31-47a0-b6e3-ad3d07239fdd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:52.811 550078 INFO oslo_service.periodic_task [req-3e3c991a-4172-472a-bcc5-deef2ba9e9ed - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:52.842 550048 INFO oslo_service.periodic_task [req-da631fa4-4c30-4d59-a318-0e31cfcb179c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:52.854 550064 INFO oslo_service.periodic_task [req-a9d8e395-c202-4e32-9adc-39469b563707 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:52.899 550024 INFO oslo_service.periodic_task [req-381f1691-e6aa-4b8e-bf08-7736795afa86 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:52.905 550042 INFO oslo_service.periodic_task [req-e6852359-8e67-4cfc-8a64-3a626a694b13 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:52.907 550110 INFO oslo_service.periodic_task [req-26069f8c-7c86-4449-a04d-268fc0e1d0ff - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:52.941 550088 INFO oslo_service.periodic_task [req-588e2345-89e0-4159-acd5-3bab3cfa5a34 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:52.951 550030 INFO oslo_service.periodic_task [req-0d0450d1-8caa-45b5-98a2-5e058878a655 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:52.963 550074 INFO oslo_service.periodic_task [req-2fe4374b-00ee-46f4-95f9-eb421c57ead2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:52.964 550112 INFO oslo_service.periodic_task [req-a6476be2-a400-4f54-b50e-2a343126240c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:52.972 550080 INFO oslo_service.periodic_task [req-821e4a73-6cfb-469c-8178-a5149353cf22 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:52.972 550072 INFO oslo_service.periodic_task [req-de33ba49-57d1-4a77-b5a0-9a77736d12f4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:52.998 550054 INFO oslo_service.periodic_task [req-17ece0b5-0b55-4410-ac17-de00e465b7ed - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.007 550050 INFO oslo_service.periodic_task [req-d83b87b0-054b-4d55-bc13-948a991f2a5a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.040 550068 INFO oslo_service.periodic_task [req-057f6e52-059b-49fb-9795-7d04b7254ea5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.040 550102 INFO oslo_service.periodic_task [req-e1925294-b65b-4305-9638-b596931743c9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.046 550106 INFO oslo_service.periodic_task [req-57b93126-658a-4843-8360-9bc9ad87dd26 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.048 550016 INFO oslo_service.periodic_task [req-d2015fc9-f8b7-464e-8f30-6f2c51a21e3f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.119 550114 INFO oslo_service.periodic_task [req-a6a38808-c354-4a5f-a6aa-add3ae22a7d7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.121 550100 INFO oslo_service.periodic_task [req-9c3f2a70-566f-4a5c-b4d6-106f71e1b02d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.134 550052 INFO oslo_service.periodic_task [req-fcb0d7dd-b9ad-4e13-8c6b-80d67e5bddd3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.140 550020 INFO oslo_service.periodic_task [req-867f9f46-acb6-4cec-9bef-a48caecb4934 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.158 550062 INFO oslo_service.periodic_task [req-61bd74ca-9319-474e-8043-29d796e4f47a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.160 550066 INFO oslo_service.periodic_task [req-fc29ba56-f05c-4a4d-8e27-878f188d4789 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.182 550104 INFO oslo_service.periodic_task [req-38d8a169-fdd3-4aa1-bedf-5fe310039e64 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.184 550108 INFO oslo_service.periodic_task [req-e4a22ff1-244e-485a-ae64-e86c89e7f5fe - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.190 550082 INFO oslo_service.periodic_task [req-65c3753d-ae52-412a-a55b-3a16f7db8d4d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.203 550094 INFO oslo_service.periodic_task [req-e895d356-963d-4e53-9137-5635f863e908 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.208 550076 INFO oslo_service.periodic_task [req-44777c35-39ed-4e65-8443-862d2ca38dce - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.220 550116 INFO oslo_service.periodic_task [req-dd3d41a1-9147-4b6c-ba78-ec0c75e3b101 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.279 550118 INFO oslo_service.periodic_task [req-b031bffa-5a13-44e2-b46e-a0c0fddc6f58 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.311 550092 INFO oslo_service.periodic_task [req-baa7b599-b64b-4710-b69a-c4fd6677878a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.320 550096 INFO oslo_service.periodic_task [req-1c9948e9-a1bb-4caa-84d4-9ec37e517bba - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.415 550086 INFO oslo_service.periodic_task [req-363bfd15-5ecc-4dc4-9b1c-15a0a3297b9d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.416 550084 INFO oslo_service.periodic_task [req-43e7ceba-99ee-4ef9-bc02-6bff07ff2b67 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.623 550090 INFO oslo_service.periodic_task [req-7877663e-e42e-47b9-b0b3-0c21ad22aa29 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.737 550058 INFO oslo_service.periodic_task [req-288c6f34-25c9-4e83-98d2-8c2d8cff010f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.836 550127 INFO oslo_service.periodic_task [req-42c857ef-2b73-4a63-b134-c0f2fa181338 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.909 550060 INFO oslo_service.periodic_task [req-c73ca1a4-cca3-4408-a1df-6f1a9b761853 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:53.938 550125 INFO oslo_service.periodic_task [req-ef135756-75a2-420e-8ff0-6def32abf4eb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:54.046 550121 INFO oslo_service.periodic_task [req-3643ff06-0744-4f89-b4b9-2f9da33f340a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-15 19:03:54.134 550123 INFO oslo_service.periodic_task [req-0ef46228-f49e-419c-a7b5-b3cca2ce648e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
{3} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [1.653738s] ... ok
{2} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.663336s] ... ok
{9} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.416757s] ... ok
{10} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.442931s] ... ok
{8} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.429207s] ... ok
{6} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.407593s] ... ok
{11} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.404789s] ... ok
{12} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.507250s] ... ok
{13} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.461765s] ... ok
{7} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.497286s] ... ok
{23} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [2.944278s] ... ok
{26} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [3.195787s] ... ok
{1} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.484227s] ... ok
{27} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.765084s] ... ok
{25} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{29} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.748237s] ... ok
{31} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [3.955247s] ... ok
{5} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.983086s] ... ok
{41} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [4.508658s] ... ok
{14} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [4.630976s] ... ok
{43} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [4.498771s] ... ok
{34} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.272382s] ... ok
{44} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [4.578022s] ... ok
{47} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [4.939063s] ... ok
{19} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [5.043466s] ... ok
{45} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.194530s] ... ok
{50} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.161565s] ... ok
{18} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [5.310782s] ... ok
{17} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.514680s] ... ok
{42} nova.tests.functional.regressions.test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment