Skip to content

Instantly share code, notes, and snippets.

@sombrafam
Created March 16, 2022 16:26
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/03112dea45b3c6823eae94e47bc7511e to your computer and use it in GitHub Desktop.
Save sombrafam/03112dea45b3c6823eae94e47bc7511e 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 good.txt
ubuntu@buneary:~/nova$ git show HEAD
commit 1aa89f0ed17b83ace41cfc420b4b70c40c9703df (HEAD)
Author: Erlon R. Cruz <erlon@canonical.com>
Date: Thu Mar 10 15:50:54 2022 -0300
Adds regression test for bug LP#1944619
Related-bug: #1944619
Closes-bug: #1964472
Change-Id: Ie7e5377aea23a4fbd7ad91f245d17def6d0fb927
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..1da30eb2d1
--- /dev/null
+++ b/nova/tests/functional/regressions/test_bug_1944619.py
@@ -0,0 +1,83 @@
+# 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
+import mock
+
+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']
+
+ def test_rollback_pre_live_migration(self):
+ self.server = self._create_server(host='src', networks='none')
+
+ lib_path = "nova.virt.libvirt.driver.LibvirtDriver"
+ funtion_path = "pre_live_migration"
+ mock_lib_path_prelive = "%s.%s" % (lib_path, funtion_path)
+ with mock.patch(mock_lib_path_prelive,
+ side_effect=nova_exceptions.DestinationDiskExists(
+ path='/var/non/existent')) as mlpp:
+ funtion_path = "rollback_live_migration_at_source"
+ mock_lib_path_rollback = "%s.%s" % (lib_path, funtion_path)
+ with mock.patch(mock_lib_path_rollback) as mlpr:
+ # Live migrate the instance to another host
+ self._live_migrate(self.server,
+ migration_expected_state='failed',
+ 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.
+ mlpr.assert_called_once()
+ mlpp.assert_called_once()
ubuntu@buneary:~/nova$ for i in $(seq 1 100); do echo "Tox run $i"; tox -e functional-py39 nova.tests.functional.regressions; done
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@1aa89f0ed17b83ace41cfc420b4b70c40c9703df#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.limit==1.5.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='4090253039'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
2022-03-16 11:58:33.284 1186348 INFO oslo_service.periodic_task [req-5baaa3b8-d041-48c1-b756-0469a87d418f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.355 1186342 INFO oslo_service.periodic_task [req-19466657-2549-468e-b35f-821a88e1c2c3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.413 1186330 INFO oslo_service.periodic_task [req-06e4121a-b3ff-4447-8d61-02165c0f4fc5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.487 1186354 INFO oslo_service.periodic_task [req-7fe17901-b438-4d2e-8545-e9d60093f79b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.543 1186338 INFO oslo_service.periodic_task [req-2931e07d-7985-4391-983e-0ae87bdaf4b6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.580 1186356 INFO oslo_service.periodic_task [req-914a165f-d592-4abd-abec-006589718832 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.581 1186362 INFO oslo_service.periodic_task [req-d4a4316f-6538-471a-8e72-ee8aa1d0882e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.589 1186340 INFO oslo_service.periodic_task [req-1561b755-e276-4382-83d9-345862d9aae2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.612 1186350 INFO oslo_service.periodic_task [req-51f8919a-01ae-4a7b-b5f2-67d28802a34f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.628 1186390 INFO oslo_service.periodic_task [req-e1675e87-20a4-4b31-8720-2411fe08f28c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.631 1186364 INFO oslo_service.periodic_task [req-4a6ad18e-b5a7-4a8c-9b40-626e59d89982 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.630 1186332 INFO oslo_service.periodic_task [req-4723b04e-74ed-4588-bb52-7f37dc18c33f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.650 1186344 INFO oslo_service.periodic_task [req-b8d0eb5b-937c-4e36-8672-407e1baf6e2a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.661 1186410 INFO oslo_service.periodic_task [req-4d0ce85c-6760-4198-92cd-2d826b97877d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.677 1186336 INFO oslo_service.periodic_task [req-b1e1e719-0e1a-489f-b6d9-a594a98262d5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.689 1186394 INFO oslo_service.periodic_task [req-7353fa80-2d7a-4c44-958e-56f5d54e19fd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.713 1186378 INFO oslo_service.periodic_task [req-bd5b9145-6893-4de1-be77-a1c4bf2baeaa - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.717 1186368 INFO oslo_service.periodic_task [req-b8e3bf47-5b3c-4ab6-a1db-5d9a1b9f04c2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.723 1186346 INFO oslo_service.periodic_task [req-436d0a00-0224-4e55-878a-d0746d911c75 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.726 1186376 INFO oslo_service.periodic_task [req-9e0885ac-2bcd-4239-b86e-1ae2b070e2c4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.723 1186384 INFO oslo_service.periodic_task [req-01b89610-8c2e-4a16-85bb-2338eed2ad96 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.726 1186428 INFO oslo_service.periodic_task [req-8446e594-820f-4958-8265-941cc4a4b7c0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.732 1186392 INFO oslo_service.periodic_task [req-b2b36bd1-ad87-4843-b45c-a8ddf357a034 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.731 1186412 INFO oslo_service.periodic_task [req-6609c525-9b98-44f6-9707-96c25892d91f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.733 1186358 INFO oslo_service.periodic_task [req-49bc6ac6-dbec-4b23-b1f0-576608112b3a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.755 1186334 INFO oslo_service.periodic_task [req-293275ba-03f8-4e7b-a047-7b5bc542cf41 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.761 1186386 INFO oslo_service.periodic_task [req-5de02a54-826b-42ed-bbea-507c3c194a4e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.747 1186372 INFO oslo_service.periodic_task [req-c3d6f8f6-523f-4c43-a7b0-b5fb36d97d6d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.793 1186432 INFO oslo_service.periodic_task [req-5645818d-cc53-42e7-8169-faf4f3332758 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.816 1186398 INFO oslo_service.periodic_task [req-629aa19b-8fd0-4bfc-9867-0a835282b953 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.839 1186406 INFO oslo_service.periodic_task [req-a9638a72-b5a6-4d3d-847b-d16d6766fae9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.843 1186420 INFO oslo_service.periodic_task [req-91045223-5b5b-468b-9140-16b18168b9ac - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.858 1186366 INFO oslo_service.periodic_task [req-0305c264-603e-4928-a91c-5ccafd661913 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.864 1186424 INFO oslo_service.periodic_task [req-25693f23-013c-44c6-9f8f-dcbfd28e781f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.866 1186441 INFO oslo_service.periodic_task [req-b6e851a1-3e97-4e86-9984-7a59269c4fe3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.875 1186404 INFO oslo_service.periodic_task [req-030b1e57-5289-4075-98f5-63c556358125 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.884 1186388 INFO oslo_service.periodic_task [req-b1603411-89dd-414f-8b7d-2eba7b2afa2d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.888 1186382 INFO oslo_service.periodic_task [req-e6351fa6-72c0-4135-9727-de453148cb8e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.890 1186418 INFO oslo_service.periodic_task [req-b059388b-c445-40e0-9a6b-1a3f70624535 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.917 1186422 INFO oslo_service.periodic_task [req-85a5b6d3-b881-4888-939e-a02e6caee877 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.922 1186434 INFO oslo_service.periodic_task [req-e7f90114-efec-400a-97f0-882bc6224770 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.928 1186416 INFO oslo_service.periodic_task [req-c9c1d90e-8c32-47e1-84b7-9514589d1d00 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.929 1186380 INFO oslo_service.periodic_task [req-df6c2eab-6b3b-46e4-ae1b-d276b84e0cb2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.933 1186408 INFO oslo_service.periodic_task [req-17a8cd26-6418-47f5-a9d8-caea44c355cf - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.948 1186370 INFO oslo_service.periodic_task [req-fe0b534a-5ba5-45cb-9a7b-8fc7a1ef7e89 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:33.974 1186360 INFO oslo_service.periodic_task [req-6f18d7ed-9618-496a-ba5f-e4bdd77383e5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:34.011 1186352 INFO oslo_service.periodic_task [req-fda623ad-a3dc-4fdc-9dc4-d3fed2a4f889 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:34.017 1186374 INFO oslo_service.periodic_task [req-7de3b12f-45ef-4900-90c5-bd6a33705b51 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:34.025 1186430 INFO oslo_service.periodic_task [req-a45c4406-b4ae-48d7-a8ff-80fa318ff36f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:34.032 1186426 INFO oslo_service.periodic_task [req-cacf0f64-068c-475e-9880-1ac509d6e095 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:34.045 1186400 INFO oslo_service.periodic_task [req-7e7748d5-3ceb-4a48-a710-5575f4fd9082 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:34.048 1186437 INFO oslo_service.periodic_task [req-559b6990-2aae-4eba-8cca-f21812bcf70b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:34.049 1186396 INFO oslo_service.periodic_task [req-e4118906-729d-4a36-9f1f-5d17835485cc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:34.074 1186414 INFO oslo_service.periodic_task [req-7199c8c0-b279-484f-b0b3-444ed7a7d689 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:34.170 1186402 INFO oslo_service.periodic_task [req-e74f9e1d-f2a5-4da5-8405-7d7acbad91e4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:58:34.194 1186439 INFO oslo_service.periodic_task [req-8df3be0e-94dc-48aa-a6f9-40f06daf3ca9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
{0} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.659363s] ... ok
{1} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [1.695127s] ... ok
{9} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.450098s] ... ok
{6} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.393127s] ... ok
{12} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.455891s] ... ok
{4} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.427270s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.398874s] ... ok
{8} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.423704s] ... ok
{11} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.466598s] ... ok
{14} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [2.903993s] ... ok
{19} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{18} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [3.304713s] ... ok
{23} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.545523s] ... ok
{30} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.945158s] ... ok
{26} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.698580s] ... ok
{32} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.962657s] ... ok
{38} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [4.041541s] ... ok
{40} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.185595s] ... ok
{10} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [4.448812s] ... ok
{3} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [4.425488s] ... ok
{47} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [4.401418s] ... ok
{46} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [4.416112s] ... ok
{21} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [4.620960s] ... ok
{2} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [4.962286s] ... ok
{15} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [4.944311s] ... ok
{42} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.022826s] ... ok
{43} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [5.306539s] ... ok
{22} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.241562s] ... ok
{37} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.453994s] ... ok
{54} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [5.177244s] ... ok
{34} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.568716s] ... ok
{31} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [5.674137s] ... ok
{36} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.346387s] ... ok
{39} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.747199s] ... ok
{24} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [6.136773s] ... ok
{41} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [6.292602s] ... ok
{45} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [6.355657s] ... ok
{49} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [6.470846s] ... ok
{25} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.339444s] ... ok
{53} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [6.291080s] ... ok
{35} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [6.375040s] ... ok
{44} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [6.564400s] ... ok
{27} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [6.774865s] ... ok
{48} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [6.539562s] ... ok
{51} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [6.792229s] ... ok
{17} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [7.025568s] ... ok
{50} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [6.722563s] ... ok
{13} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [7.205414s] ... ok
{16} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [7.255866s] ... ok
{52} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [7.014893s] ... ok
{28} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [7.280310s] ... ok
{38} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [3.202050s] ... ok
{7} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [7.441585s] ... ok
{6} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [5.366051s] ... ok
{55} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [7.311686s] ... ok
{31} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [1.827830s] ... ok
{9} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [5.563798s] ... ok
{12} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [5.364545s] ... ok
{30} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [3.780028s] ... ok
{14} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [4.895375s] ... ok
{32} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.981639s] ... ok
{40} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [3.846695s] ... ok
{7} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [0.677534s] ... ok
{26} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [4.239243s] ... ok
{1} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [6.495081s] ... ok
{11} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [5.385395s] ... ok
{29} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [8.120328s] ... ok
{19} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [4.995492s] ... ok
{33} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [8.312411s] ... ok
{54} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [3.231125s] ... ok
{20} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [8.777099s] ... ok
{8} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [6.650821s] ... ok
{28} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [1.784839s] ... ok
{4} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.075040s] ... ok
{23} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [5.831564s] ... ok
{36} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.616592s] ... ok
{24} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [3.475444s] ... ok
{21} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [5.056244s] ... ok
{41} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.412275s] ... ok
{42} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [4.401136s] ... ok
{37} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [4.269150s] ... ok
{47} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [5.390836s] ... ok
{53} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [3.332857s] ... ok
{54} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.160678s] ... ok
{13} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [2.999943s] ... ok
{46} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [5.483848s] ... ok
{0} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [8.779718s] ... ok
{39} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [4.185397s] ... ok
{17} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.322768s] ... ok
{34} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [4.591510s] ... ok
{16} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [3.299222s] ... ok
{5} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [8.154844s] ... ok
{43} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [5.057591s] ... ok
{50} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [3.629015s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "security_group_instance_association", "security_groups" and FROM element "instances". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{53} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [0.807121s] ... ok
{25} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [4.231272s] ... ok
{18} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [7.356953s] ... ok
{49} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [4.386591s] ... ok
{50} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.392414s] ... ok
{27} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [4.417238s] ... ok
{45} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [4.734352s] ... ok
{2} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [6.302053s] ... ok
{55} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.087765s] ... ok
{29} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [3.416660s] ... ok
{52} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.567762s] ... ok
{10} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [7.507251s] ... ok
{3} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.590147s] ... ok
{15} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [6.817109s] ... ok
{55} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.554886s] ... ok
{35} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.433332s] ... ok
{48} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [5.332909s] ... ok
{20} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [3.239724s] ... ok
{51} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [5.449209s] ... ok
{22} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [7.005331s] ... ok
{33} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.000128s] ... ok
{44} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.649156s] ... ok
======
Totals
======
Ran: 116 tests in 13.8187 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 559.6090 sec.
==============
Worker Balance
==============
- Worker 0 (2 tests) => 0:00:10.441345
- Worker 1 (2 tests) => 0:00:08.192348
- Worker 2 (2 tests) => 0:00:11.266091
- Worker 3 (2 tests) => 0:00:12.016481
- Worker 4 (2 tests) => 0:00:09.505250
- Worker 5 (2 tests) => 0:00:10.555835
- Worker 6 (2 tests) => 0:00:07.761810
- Worker 7 (2 tests) => 0:00:08.120440
- Worker 8 (2 tests) => 0:00:09.076272
- Worker 9 (2 tests) => 0:00:08.016544
- Worker 10 (2 tests) => 0:00:11.956737
- Worker 11 (2 tests) => 0:00:07.852845
- Worker 12 (2 tests) => 0:00:07.823319
- Worker 13 (2 tests) => 0:00:10.207495
- Worker 14 (2 tests) => 0:00:07.800315
- Worker 15 (2 tests) => 0:00:11.763182
- Worker 16 (2 tests) => 0:00:10.557205
- Worker 17 (2 tests) => 0:00:10.350281
- Worker 18 (2 tests) => 0:00:10.662985
- Worker 19 (2 tests) => 0:00:08.398763
- Worker 20 (2 tests) => 0:00:12.018262
- Worker 21 (2 tests) => 0:00:09.678786
- Worker 22 (2 tests) => 0:00:12.248727
- Worker 23 (2 tests) => 0:00:09.378551
- Worker 24 (2 tests) => 0:00:09.613415
- Worker 25 (2 tests) => 0:00:10.572992
- Worker 26 (2 tests) => 0:00:07.939946
- Worker 27 (2 tests) => 0:00:11.193126
- Worker 28 (2 tests) => 0:00:09.066696
- Worker 29 (2 tests) => 0:00:11.539230
- Worker 30 (2 tests) => 0:00:07.726169
- Worker 31 (2 tests) => 0:00:07.503042
- Worker 32 (2 tests) => 0:00:07.946212
- Worker 33 (2 tests) => 0:00:12.314461
- Worker 34 (2 tests) => 0:00:10.164498
- Worker 35 (2 tests) => 0:00:11.810189
- Worker 36 (2 tests) => 0:00:08.965360
- Worker 37 (2 tests) => 0:00:09.725034
- Worker 38 (2 tests) => 0:00:07.244542
- Worker 39 (2 tests) => 0:00:09.934210
- Worker 40 (2 tests) => 0:00:08.033195
- Worker 41 (2 tests) => 0:00:09.706647
- Worker 42 (2 tests) => 0:00:09.426349
- Worker 43 (2 tests) => 0:00:10.366107
- Worker 44 (2 tests) => 0:00:13.215283
- Worker 45 (2 tests) => 0:00:11.091478
- Worker 46 (2 tests) => 0:00:09.901316
- Worker 47 (2 tests) => 0:00:09.793689
- Worker 48 (2 tests) => 0:00:11.873797
- Worker 49 (2 tests) => 0:00:10.858912
- Worker 50 (3 tests) => 0:00:10.746786
- Worker 51 (2 tests) => 0:00:12.242833
- Worker 52 (2 tests) => 0:00:11.584641
- Worker 53 (3 tests) => 0:00:10.434357
- Worker 54 (3 tests) => 0:00:09.573367
- Worker 55 (3 tests) => 0:00:11.956485
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 8.780
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True 8.777
nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute 8.312
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 8.155
nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists 8.120
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.590
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True 7.507
nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate 7.442
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False 7.357
nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 7.312
__________________________________________________________________________ summary ___________________________________________________________________________
functional-py39: commands succeeded
congratulations :)
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@1aa89f0ed17b83ace41cfc420b4b70c40c9703df#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.limit==1.5.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='947130477'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
2022-03-16 11:59:07.026 1187232 INFO oslo_service.periodic_task [req-77d4269a-0d1a-4d5b-be57-d5c3f5b0d777 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.026 1187244 INFO oslo_service.periodic_task [req-bc2fd2e0-07c3-4dd2-b5f0-cbe21ef2ecec - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.032 1187250 INFO oslo_service.periodic_task [req-37863dfe-76c4-4a3e-b9f0-ae236fe29c27 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.047 1187248 INFO oslo_service.periodic_task [req-d3ec6ba3-31d4-4202-b9a5-3ed96147c4cc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.055 1187246 INFO oslo_service.periodic_task [req-c8202125-7d47-4eaa-ae38-4f0f1bedf142 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.074 1187224 INFO oslo_service.periodic_task [req-e81f7f9b-930f-4149-a26e-5aad31b55bff - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.089 1187294 INFO oslo_service.periodic_task [req-23c4b3a8-ffda-4379-94d0-c9c5c1969716 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.101 1187254 INFO oslo_service.periodic_task [req-c72341d9-a8e8-4b1b-bc58-10756f558bf4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.131 1187228 INFO oslo_service.periodic_task [req-079ee392-d1bc-471a-8c44-c8476575e523 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.135 1187270 INFO oslo_service.periodic_task [req-321d9985-8f8e-41fb-88bf-d60b9e62747c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.139 1187236 INFO oslo_service.periodic_task [req-09acaba8-8719-4c38-b2b9-b30888c2681a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.141 1187290 INFO oslo_service.periodic_task [req-87f01d97-cd56-4268-827f-c21aea010f73 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.148 1187234 INFO oslo_service.periodic_task [req-928685fa-e8d7-4a65-b782-5444e82bc2b0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.155 1187238 INFO oslo_service.periodic_task [req-1be9981d-fa63-41c9-bbb5-5456dbe29245 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.168 1187264 INFO oslo_service.periodic_task [req-0cc030df-f659-41a9-b151-c91c77260c48 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.179 1187292 INFO oslo_service.periodic_task [req-f1da7f8b-34cb-4d8f-b678-6a3a8bd62470 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.179 1187278 INFO oslo_service.periodic_task [req-6e8dc259-e025-443f-ac2f-8c319fd2d1b0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.180 1187262 INFO oslo_service.periodic_task [req-df1faeb5-4cbb-4ee1-bd01-9c7c6ad74cf6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.187 1187230 INFO oslo_service.periodic_task [req-a027703c-0e65-49fc-9c1b-2221c64d5990 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.198 1187268 INFO oslo_service.periodic_task [req-fff5c515-10ac-4a3f-aad2-7030eca29093 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.212 1187242 INFO oslo_service.periodic_task [req-a1f34539-c54a-418c-be27-eb2ae578d813 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.215 1187266 INFO oslo_service.periodic_task [req-8fc3e59b-b24f-448c-aae7-816da976e378 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.218 1187310 INFO oslo_service.periodic_task [req-4b8c8f85-24dc-4dd3-8950-a2549c42a432 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.233 1187276 INFO oslo_service.periodic_task [req-dd48ef23-5716-4bda-9932-c608568f0585 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.236 1187260 INFO oslo_service.periodic_task [req-bed0ea80-0ed5-48c8-acac-e73c4c080b49 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.254 1187316 INFO oslo_service.periodic_task [req-d7b7f2b4-c041-4d62-a4f2-38fba61ac3f2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.296 1187302 INFO oslo_service.periodic_task [req-d450070c-acee-4a67-80a7-3a067854512b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.320 1187296 INFO oslo_service.periodic_task [req-fee8d122-7fdc-4633-a975-b96cf1ae1320 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.323 1187226 INFO oslo_service.periodic_task [req-b5bae7d7-4e96-4008-aaae-281545bd51cd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.323 1187332 INFO oslo_service.periodic_task [req-6376a365-09f0-4d11-a747-1c2696dcbe2f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.327 1187324 INFO oslo_service.periodic_task [req-d558627c-0d0c-4469-a7a0-fd6ae2750287 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.328 1187328 INFO oslo_service.periodic_task [req-f6edb118-5392-4130-b196-06b7a9aa287e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.334 1187330 INFO oslo_service.periodic_task [req-bc7ad966-75dd-44be-b584-ea1956fa2f15 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.344 1187272 INFO oslo_service.periodic_task [req-f002da31-4d03-47cf-82d9-7696bf5dd8f8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.347 1187306 INFO oslo_service.periodic_task [req-75ea94a9-8d63-40f8-902a-0d0764994431 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.351 1187252 INFO oslo_service.periodic_task [req-9e8cfb28-31f6-4c70-8b66-39486b868e25 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.355 1187308 INFO oslo_service.periodic_task [req-2c53189b-c8fb-4ad7-a834-7d9020c595c0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.394 1187298 INFO oslo_service.periodic_task [req-3b9706d5-10ab-452e-9fd9-d687ac7df77f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.396 1187314 INFO oslo_service.periodic_task [req-a56725e2-c76b-46ca-a4e5-352f95e6cebe - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.394 1187288 INFO oslo_service.periodic_task [req-65ca9b58-4254-4783-acbb-f26c5bff9047 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.406 1187240 INFO oslo_service.periodic_task [req-8a7c4f4c-0fb0-4547-b9a1-16adacf36758 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.395 1187282 INFO oslo_service.periodic_task [req-04dd7083-8253-498b-8646-513a22ce1233 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.483 1187312 INFO oslo_service.periodic_task [req-9577699c-f7bf-4099-9216-ee65afc13335 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.487 1187286 INFO oslo_service.periodic_task [req-941508ff-07bb-47a9-9372-b721176afddf - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.499 1187300 INFO oslo_service.periodic_task [req-3f690184-949e-45ba-b602-4bc8bf2b8b6b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.517 1187326 INFO oslo_service.periodic_task [req-d4bf29af-5362-40c7-a617-5b667f01c91f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.526 1187284 INFO oslo_service.periodic_task [req-eebc0b29-615f-4dff-815f-ef2f4457065b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.580 1187256 INFO oslo_service.periodic_task [req-b1727dbb-cb9f-4597-aee2-cb19c632e801 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.588 1187318 INFO oslo_service.periodic_task [req-32b3a71c-7c67-45e9-9538-897fceca22b8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.603 1187335 INFO oslo_service.periodic_task [req-6542dd30-7f74-4840-81e5-cc577be69b38 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.614 1187258 INFO oslo_service.periodic_task [req-5f6b1202-421a-4617-aa55-d2ff6ce2dc17 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.624 1187322 INFO oslo_service.periodic_task [req-7aa1c41c-c949-4219-a893-0929364c9af6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.637 1187280 INFO oslo_service.periodic_task [req-dd23e089-db40-4b33-9d35-b8d67df74510 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.651 1187274 INFO oslo_service.periodic_task [req-bef4711b-cd63-4551-b28b-18e1289c2d29 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.680 1187304 INFO oslo_service.periodic_task [req-0013a375-5b62-4492-abfb-db0b3486b537 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:07.714 1187320 INFO oslo_service.periodic_task [req-c23339c3-41f6-4001-8da2-4c70dca54399 - - - - -] 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.668600s] ... ok
{1} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.725215s] ... ok
{11} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.421891s] ... ok
{10} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.467616s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.404903s] ... ok
{6} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.409558s] ... ok
{7} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.437443s] ... ok
{9} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.490831s] ... ok
{39} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.439494s] ... ok
{8} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.389706s] ... ok
{12} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [3.069475s] ... ok
{21} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{18} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [3.282676s] ... ok
{35} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [3.946002s] ... ok
{25} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.561004s] ... ok
{32} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.966248s] ... ok
{31} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.919574s] ... ok
{28} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.812957s] ... ok
{38} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.234269s] ... ok
{45} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [4.483797s] ... ok
{48} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [4.466528s] ... ok
{22} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [5.229092s] ... ok
{54} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.145100s] ... ok
{50} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.316755s] ... ok
{51} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [5.148611s] ... ok
{14} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.345009s] ... ok
{49} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [5.110368s] ... ok
{30} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.221081s] ... ok
{36} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [5.499825s] ... ok
{16} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [5.249586s] ... ok
{37} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.466333s] ... ok
{47} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.403095s] ... ok
{29} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.739136s] ... ok
{40} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.538069s] ... ok
{33} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [6.197626s] ... ok
{27} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [6.198086s] ... ok
{19} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [6.259933s] ... ok
{15} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [6.513974s] ... ok
{26} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [6.447722s] ... ok
{20} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [6.596737s] ... ok
{39} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [4.083063s] ... ok
{43} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [6.616154s] ... ok
{23} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [6.714339s] ... ok
{52} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [6.605918s] ... ok
{24} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [6.618194s] ... ok
{42} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [6.690874s] ... ok
{46} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [6.993937s] ... ok
{4} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [7.416720s] ... ok
{55} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [6.833642s] ... ok
{10} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [4.997426s] ... ok
{53} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [7.146266s] ... ok
{35} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [3.519902s] ... ok
{2} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [5.899766s] ... ok
{11} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [5.268686s] ... ok
{18} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [4.304292s] ... ok
{7} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [5.300302s] ... ok
{44} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [7.445882s] ... ok
{34} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [7.796607s] ... ok
{9} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [5.537308s] ... ok
{54} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [2.768890s] ... ok
{41} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [7.905839s] ... ok
{12} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [5.282324s] ... ok
{31} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [3.989330s] ... ok
{11} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.950720s] ... ok
{28} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [4.404689s] ... ok
{13} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [8.931798s] ... ok
{32} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [4.671368s] ... ok
{47} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [3.067049s] ... ok
{17} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [8.454808s] ... ok
{51} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [3.563889s] ... ok
{15} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [2.822218s] ... ok
{3} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [9.288414s] ... ok
{19} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.087963s] ... ok
{0} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.711963s] ... ok
{20} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [3.136260s] ... ok
{4} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [2.471217s] ... ok
{33} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.596776s] ... ok
{6} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [7.456062s] ... ok
{26} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.387558s] ... ok
{27} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [3.699625s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "security_group_instance_association", "security_groups" and FROM element "instances". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{50} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [4.438573s] ... ok
{25} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [5.861721s] ... ok
{44} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [2.177559s] ... ok
{1} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [8.089247s] ... ok
{38} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [5.449032s] ... ok
{14} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [4.522425s] ... ok
{55} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [2.777009s] ... ok
{24} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [3.343857s] ... ok
{49} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.613514s] ... ok
{36} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.549568s] ... ok
{5} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.842764s] ... ok
{37} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [4.549163s] ... ok
{39} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [3.608833s] ... ok
{21} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [6.944599s] ... ok
{48} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [5.266677s] ... ok
{23} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [3.764876s] ... ok
{8} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [7.803574s] ... ok
{45} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [5.834587s] ... ok
{29} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [4.715362s] ... ok
{40} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [4.660891s] ... ok
{0} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.285469s] ... ok
{43} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [4.359489s] ... ok
{3} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [1.783468s] ... ok
{13} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [2.573461s] ... ok
{53} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [4.138102s] ... ok
{22} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.253404s] ... ok
{40} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [0.833245s] ... ok
{52} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [4.863102s] ... ok
{17} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [2.787527s] ... ok
{46} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [4.633282s] ... ok
{41} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [3.670646s] ... ok
{30} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [6.832250s] ... ok
{34} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.628760s] ... ok
{42} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.606343s] ... ok
{16} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [6.920807s] ... ok
{41} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.954151s] ... ok
======
Totals
======
Ran: 116 tests in 12.8682 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 553.8715 sec.
==============
Worker Balance
==============
- Worker 0 (2 tests) => 0:00:11.000024
- Worker 1 (2 tests) => 0:00:09.817525
- Worker 2 (2 tests) => 0:00:07.570394
- Worker 3 (2 tests) => 0:00:11.074378
- Worker 4 (2 tests) => 0:00:09.890038
- Worker 5 (2 tests) => 0:00:10.250549
- Worker 6 (2 tests) => 0:00:09.868206
- Worker 7 (2 tests) => 0:00:07.739003
- Worker 8 (2 tests) => 0:00:10.194949
- Worker 9 (2 tests) => 0:00:08.030757
- Worker 10 (2 tests) => 0:00:07.467567
- Worker 11 (3 tests) => 0:00:08.644737
- Worker 12 (2 tests) => 0:00:08.354151
- Worker 13 (2 tests) => 0:00:11.506826
- Worker 14 (2 tests) => 0:00:09.869064
- Worker 15 (2 tests) => 0:00:09.337133
- Worker 16 (2 tests) => 0:00:12.171644
- Worker 17 (2 tests) => 0:00:11.243151
- Worker 18 (2 tests) => 0:00:07.587983
- Worker 19 (2 tests) => 0:00:09.349701
- Worker 20 (2 tests) => 0:00:09.734491
- Worker 21 (2 tests) => 0:00:10.217952
- Worker 22 (2 tests) => 0:00:11.483581
- Worker 23 (2 tests) => 0:00:10.480470
- Worker 24 (2 tests) => 0:00:09.963706
- Worker 25 (2 tests) => 0:00:09.423683
- Worker 26 (2 tests) => 0:00:09.837115
- Worker 27 (2 tests) => 0:00:09.899071
- Worker 28 (2 tests) => 0:00:08.219593
- Worker 29 (2 tests) => 0:00:10.455723
- Worker 30 (2 tests) => 0:00:12.054846
- Worker 31 (2 tests) => 0:00:07.910415
- Worker 32 (2 tests) => 0:00:08.639056
- Worker 33 (2 tests) => 0:00:09.795460
- Worker 34 (2 tests) => 0:00:12.426867
- Worker 35 (2 tests) => 0:00:07.466944
- Worker 36 (2 tests) => 0:00:10.050843
- Worker 37 (2 tests) => 0:00:10.017040
- Worker 38 (2 tests) => 0:00:09.685217
- Worker 39 (3 tests) => 0:00:10.135543
- Worker 40 (3 tests) => 0:00:11.035146
- Worker 41 (3 tests) => 0:00:12.533104
- Worker 42 (2 tests) => 0:00:12.298263
- Worker 43 (2 tests) => 0:00:10.976326
- Worker 44 (2 tests) => 0:00:09.625440
- Worker 45 (2 tests) => 0:00:10.319468
- Worker 46 (2 tests) => 0:00:11.628370
- Worker 47 (2 tests) => 0:00:08.472794
- Worker 48 (2 tests) => 0:00:09.734249
- Worker 49 (2 tests) => 0:00:09.725843
- Worker 50 (2 tests) => 0:00:09.758168
- Worker 51 (2 tests) => 0:00:08.714361
- Worker 52 (2 tests) => 0:00:11.470039
- Worker 53 (2 tests) => 0:00:11.285739
- Worker 54 (2 tests) => 0:00:07.915649
- Worker 55 (2 tests) => 0:00:09.611797
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.712
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 9.288
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False 8.932
nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host 8.455
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True 8.089
nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules 7.906
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.843
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False 7.804
nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure 7.797
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True 7.456
__________________________________________________________________________ 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@1aa89f0ed17b83ace41cfc420b4b70c40c9703df#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.limit==1.5.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='1272576365'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
2022-03-16 11:59:39.305 1187906 INFO oslo_service.periodic_task [req-132aaa4b-7146-4fd5-b9f8-8fa967275713 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.365 1187894 INFO oslo_service.periodic_task [req-9f57621f-3851-4590-b725-878383a53869 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.380 1187902 INFO oslo_service.periodic_task [req-565f9f12-251e-4ab5-83c5-a0df880065d8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.384 1187904 INFO oslo_service.periodic_task [req-36fb9af3-e274-4d1c-a54c-2d671c4f1737 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.401 1187908 INFO oslo_service.periodic_task [req-95960788-1ef5-4bf5-8a4f-b7b6e47c0f33 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.406 1187948 INFO oslo_service.periodic_task [req-e8236ce3-5a9b-4b75-9416-bfe24c1806cc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.417 1187916 INFO oslo_service.periodic_task [req-9847558f-7cc2-49f0-95b3-1b5ddb61e8e7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.443 1187896 INFO oslo_service.periodic_task [req-90b2df62-2811-439e-9400-792a6b191bb8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.466 1187952 INFO oslo_service.periodic_task [req-ca624bae-2f03-4930-beec-41a802f5fdb2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.469 1187900 INFO oslo_service.periodic_task [req-89089dc9-ccb8-4b07-9e48-ea46903baae9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.493 1187918 INFO oslo_service.periodic_task [req-64839187-04d0-47df-bc87-616b06dca7aa - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.503 1187932 INFO oslo_service.periodic_task [req-6dd6c49e-a0ab-40fd-99ce-3f8b49f1ee0f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.520 1187926 INFO oslo_service.periodic_task [req-fb1221a3-4f17-4f00-9479-215b906d43b9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.544 1187954 INFO oslo_service.periodic_task [req-288b2a82-2b6e-43c0-aa9f-39b36095eb1a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.553 1187924 INFO oslo_service.periodic_task [req-9c5dd4fa-c23c-42b1-b8bd-10ad920ab551 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.574 1187914 INFO oslo_service.periodic_task [req-92f0c55c-48f5-4da9-8915-ed70740912db - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.590 1187928 INFO oslo_service.periodic_task [req-7bcbae74-d950-4c75-9d3a-294ca0e6b00e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.604 1187938 INFO oslo_service.periodic_task [req-5a266a18-ead0-49a1-a791-c047014778d8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.609 1187920 INFO oslo_service.periodic_task [req-eba4887b-2938-4e2b-9647-524b4ed9144b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.617 1187986 INFO oslo_service.periodic_task [req-6d9b5425-ba8e-4236-a5b2-d65b4cc4aa8a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.621 1187922 INFO oslo_service.periodic_task [req-69265d02-1c5d-4435-9cd5-78288a2a9ead - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.618 1187912 INFO oslo_service.periodic_task [req-68586866-a71c-4faa-b5dd-3913d17b9a5e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.622 1187910 INFO oslo_service.periodic_task [req-df09e162-0e6a-46cc-9480-9cef0ebd8e1e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.621 1187956 INFO oslo_service.periodic_task [req-e6559bcc-927f-49b2-8667-e706fff3a00f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.642 1187950 INFO oslo_service.periodic_task [req-6156263e-af47-407e-86d0-9c89b695106c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.654 1187898 INFO oslo_service.periodic_task [req-882094cf-3240-4531-95bc-61a54ade4df4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.656 1187978 INFO oslo_service.periodic_task [req-291ca934-44f5-4229-b729-c7b232f7c361 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.660 1188003 INFO oslo_service.periodic_task [req-ed0de419-1e89-4e3c-a5de-0dfb1b76d750 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.674 1187946 INFO oslo_service.periodic_task [req-3c1ef8d9-035a-4f51-9a26-cd77804443a6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.682 1187940 INFO oslo_service.periodic_task [req-0b8f1425-00c5-41b0-b94c-e202b3b34b99 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.696 1187964 INFO oslo_service.periodic_task [req-19d83e05-2474-4216-89bf-f689319f66d1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.703 1187966 INFO oslo_service.periodic_task [req-f825ad68-b632-4c6b-8c05-a7f184b955e4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.708 1187960 INFO oslo_service.periodic_task [req-cd49b78d-ee41-4b25-931d-a5ece761055b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.729 1187968 INFO oslo_service.periodic_task [req-a937c158-e7ba-421a-bba4-907d775421a9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.734 1187934 INFO oslo_service.periodic_task [req-7d8ab8f6-58c9-43d1-9e77-49d658e05daa - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.735 1187930 INFO oslo_service.periodic_task [req-4e151961-6b86-4d71-8fc7-b372ded77edb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.746 1187974 INFO oslo_service.periodic_task [req-504139c5-1dc8-4241-9aee-ebb3b84a7ef8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.762 1187944 INFO oslo_service.periodic_task [req-626a312b-379e-4847-a37e-edb11c7052d0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.765 1188000 INFO oslo_service.periodic_task [req-0ad8154c-66f8-489e-b962-cafc1aefcb6c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.770 1187942 INFO oslo_service.periodic_task [req-9f81b621-9136-41d8-868e-cb9e90ef02bd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.797 1187984 INFO oslo_service.periodic_task [req-4f1af3a7-e553-44af-a516-e8bf008d5a74 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.848 1187994 INFO oslo_service.periodic_task [req-93918c70-dc00-4270-b231-54ef874af375 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.858 1187958 INFO oslo_service.periodic_task [req-3d0e3986-9f36-4f97-991a-d59f490932d3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.860 1187996 INFO oslo_service.periodic_task [req-1fc47b2f-ded3-442d-88c9-418e65b09f06 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.870 1187988 INFO oslo_service.periodic_task [req-b955012b-11e6-48af-a1ab-2e12cf5a21ab - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.881 1187998 INFO oslo_service.periodic_task [req-ba3b41a8-111d-409b-ae96-b3f16c180557 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.900 1187970 INFO oslo_service.periodic_task [req-6f6d7c5e-3c35-44aa-9dad-5aa6e42de1e8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.907 1187980 INFO oslo_service.periodic_task [req-2b6c8225-bff7-4ed2-8074-1292638e92c1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.929 1187992 INFO oslo_service.periodic_task [req-dd175de6-d33c-4ce5-a4d2-b49d99f990d3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.928 1187936 INFO oslo_service.periodic_task [req-81f1a1aa-e12b-4b1b-b32b-35199c9c24c9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.937 1187962 INFO oslo_service.periodic_task [req-2aaa9083-9dee-43ee-9e65-4a9457db0d26 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:39.946 1187976 INFO oslo_service.periodic_task [req-8f4ff464-979f-4b02-a733-79b8035ff6e8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:40.044 1187982 INFO oslo_service.periodic_task [req-bcf1e620-bc88-47dd-bfd4-cd8c97a9ace5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:40.063 1188005 INFO oslo_service.periodic_task [req-d7164a4a-9bcc-42dd-982a-a062ef268fb9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:40.066 1187972 INFO oslo_service.periodic_task [req-3610ccef-03cb-4664-8ebb-0487a0995b5b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 11:59:40.112 1187990 INFO oslo_service.periodic_task [req-239acca1-acba-4933-8085-6fc25b4cfd3a - - - - -] 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.645124s] ... ok
{6} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.396638s] ... ok
{4} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.374856s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.413428s] ... ok
{7} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.465974s] ... ok
{12} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.453352s] ... ok
{9} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.419718s] ... ok
{10} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.518163s] ... ok
{8} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.474158s] ... ok
{19} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [2.918278s] ... ok
{22} 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 [3.185188s] ... ok
{27} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.495104s] ... ok
{2} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [3.771221s] ... ok
{35} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.832434s] ... ok
{34} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.640056s] ... ok
{37} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.936549s] ... ok
{36} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [4.054526s] ... ok
{3} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [4.336972s] ... ok
{46} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [4.370709s] ... ok
{17} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [4.594215s] ... ok
{41} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.231423s] ... ok
{47} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [4.451875s] ... ok
{15} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [4.983095s] ... ok
{21} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [4.769498s] ... ok
{50} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [4.896957s] ... ok
{52} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [4.912521s] ... ok
{34} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.308852s] ... ok
{42} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.317381s] ... ok
{40} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.292721s] ... ok
{51} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.279338s] ... ok
{26} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.478038s] ... ok
{49} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.395676s] ... ok
{33} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.651671s] ... ok
{38} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.492672s] ... ok
{29} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [6.207549s] ... ok
{54} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [6.148077s] ... ok
{28} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [6.152682s] ... ok
{32} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [5.995314s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "security_group_instance_association", "security_groups" and FROM element "instances". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{20} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [6.325947s] ... ok
{16} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [6.653844s] ... ok
{18} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [6.492178s] ... ok
{25} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [6.474379s] ... ok
{37} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [2.871757s] ... ok
{55} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.560653s] ... ok
{13} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [7.102785s] ... ok
{11} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [7.299879s] ... ok
{24} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [7.066691s] ... ok
{55} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [0.293007s] ... ok
{12} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [5.087498s] ... ok
{35} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [3.532153s] ... ok
{45} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [7.292338s] ... ok
{53} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [7.347969s] ... ok
{48} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [6.998615s] ... ok
{19} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [4.755698s] ... ok
{23} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [4.484530s] ... ok
{39} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [7.308175s] ... ok
{44} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [7.339772s] ... ok
{41} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [3.273602s] ... ok
{43} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [7.578982s] ... ok
{10} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [5.483732s] ... ok
{22} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [4.747675s] ... ok
{5} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [5.862845s] ... ok
{35} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.622718s] ... ok
{30} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [8.263663s] ... ok
{47} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [3.503968s] ... ok
{37} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [1.354347s] ... ok
{14} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [8.314167s] ... ok
{31} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [8.308684s] ... ok
{8} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [6.254819s] ... ok
{18} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [2.428377s] ... ok
{9} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [6.623671s] ... ok
{0} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.480388s] ... ok
{11} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [2.198111s] ... ok
{49} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [3.806315s] ... ok
{4} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [7.392020s] ... ok
{28} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [3.383183s] ... ok
{33} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [3.926123s] ... ok
{1} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [8.217888s] ... ok
{42} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [4.376059s] ... ok
{36} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [5.599970s] ... ok
{29} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.697071s] ... ok
{46} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [5.415771s] ... ok
{27} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.529998s] ... ok
{16} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [3.262698s] ... ok
{20} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.375607s] ... ok
{50} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.715516s] ... ok
{54} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [3.682988s] ... ok
{7} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [7.658221s] ... ok
{6} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.917094s] ... ok
{13} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [3.005255s] ... ok
{52} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.931803s] ... ok
{26} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [4.655035s] ... ok
{24} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [2.970701s] ... ok
{38} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [4.512988s] ... ok
{51} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.837153s] ... ok
{25} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.859479s] ... ok
{48} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.044983s] ... ok
{40} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [5.137307s] ... ok
{21} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [5.552146s] ... ok
{38} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.571175s] ... ok
{14} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [2.725166s] ... ok
{34} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.902085s] ... ok
{39} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [3.659137s] ... ok
{3} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [7.295578s] ... ok
{32} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [5.265298s] ... ok
{17} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [6.999658s] ... ok
{45} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [4.121380s] ... ok
{55} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [4.279842s] ... ok
{53} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [4.309978s] ... ok
{2} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [8.089122s] ... ok
{44} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [4.201700s] ... ok
{31} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [3.856322s] ... ok
{43} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [4.366424s] ... ok
{15} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [7.379695s] ... ok
{30} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [4.401535s] ... ok
======
Totals
======
Ran: 116 tests in 12.9075 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 556.9953 sec.
==============
Worker Balance
==============
- Worker 0 (1 tests) => 0:00:09.480388
- Worker 1 (2 tests) => 0:00:09.865166
- Worker 2 (2 tests) => 0:00:11.861151
- Worker 3 (2 tests) => 0:00:11.633447
- Worker 4 (2 tests) => 0:00:09.769498
- Worker 5 (2 tests) => 0:00:08.278901
- Worker 6 (2 tests) => 0:00:10.317093
- Worker 7 (2 tests) => 0:00:10.127118
- Worker 8 (2 tests) => 0:00:08.731380
- Worker 9 (2 tests) => 0:00:09.046127
- Worker 10 (2 tests) => 0:00:08.003842
- Worker 11 (2 tests) => 0:00:09.499812
- Worker 12 (2 tests) => 0:00:07.543157
- Worker 13 (2 tests) => 0:00:10.109545
- Worker 14 (2 tests) => 0:00:11.041650
- Worker 15 (2 tests) => 0:00:12.365068
- Worker 16 (2 tests) => 0:00:09.918485
- Worker 17 (2 tests) => 0:00:11.595473
- Worker 18 (2 tests) => 0:00:08.922177
- Worker 19 (2 tests) => 0:00:07.675088
- Worker 20 (2 tests) => 0:00:09.703289
- Worker 21 (2 tests) => 0:00:10.322638
- Worker 22 (2 tests) => 0:00:08.006959
- Worker 23 (2 tests) => 0:00:07.670611
- Worker 24 (2 tests) => 0:00:10.039715
- Worker 25 (2 tests) => 0:00:10.335686
- Worker 26 (2 tests) => 0:00:10.134340
- Worker 27 (2 tests) => 0:00:10.026681
- Worker 28 (2 tests) => 0:00:09.537078
- Worker 29 (2 tests) => 0:00:09.905608
- Worker 30 (2 tests) => 0:00:12.667510
- Worker 31 (2 tests) => 0:00:12.166801
- Worker 32 (2 tests) => 0:00:11.261880
- Worker 33 (2 tests) => 0:00:09.579467
- Worker 34 (3 tests) => 0:00:10.853288
- Worker 35 (3 tests) => 0:00:07.990196
- Worker 36 (2 tests) => 0:00:09.656232
- Worker 37 (3 tests) => 0:00:08.165472
- Worker 38 (3 tests) => 0:00:10.580343
- Worker 39 (2 tests) => 0:00:10.968416
- Worker 40 (2 tests) => 0:00:10.432199
- Worker 41 (2 tests) => 0:00:07.506353
- Worker 42 (2 tests) => 0:00:09.694633
- Worker 43 (2 tests) => 0:00:11.946904
- Worker 44 (2 tests) => 0:00:11.543115
- Worker 45 (2 tests) => 0:00:11.416268
- Worker 46 (2 tests) => 0:00:09.787176
- Worker 47 (2 tests) => 0:00:07.956942
- Worker 48 (2 tests) => 0:00:10.045020
- Worker 49 (2 tests) => 0:00:09.203235
- Worker 50 (2 tests) => 0:00:09.614832
- Worker 51 (2 tests) => 0:00:10.117717
- Worker 52 (2 tests) => 0:00:09.846691
- Worker 53 (2 tests) => 0:00:11.659611
- Worker 54 (2 tests) => 0:00:09.832378
- Worker 55 (3 tests) => 0:00:11.135795
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.480
nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate 8.314
nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change 8.309
nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute 8.264
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 8.218
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False 8.089
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.917
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False 7.658
nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate 7.579
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True 7.392
__________________________________________________________________________ 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@1aa89f0ed17b83ace41cfc420b4b70c40c9703df#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.limit==1.5.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='2578517672'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
2022-03-16 12:00:11.966 1188616 INFO oslo_service.periodic_task [req-7989919d-3d27-4436-88f9-0a4f6890eb2e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.087 1188612 INFO oslo_service.periodic_task [req-33315ff7-fb40-4a12-8554-af3b7f203cb0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.120 1188650 INFO oslo_service.periodic_task [req-83aeff8a-38f8-4ce0-a53e-3fc592fb6430 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.210 1188614 INFO oslo_service.periodic_task [req-22d8f139-7f1e-4c4b-89a1-136b7acddb60 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.211 1188610 INFO oslo_service.periodic_task [req-8989e37c-2c60-456c-a988-fd367cd2c039 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.252 1188624 INFO oslo_service.periodic_task [req-9473c1ab-edfd-4064-bf44-806ee39187ba - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.249 1188680 INFO oslo_service.periodic_task [req-e243e4c9-7184-4305-91e9-c5f92c30162f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.250 1188638 INFO oslo_service.periodic_task [req-24a165c5-af80-4e55-a53c-77c498349ce3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.249 1188636 INFO oslo_service.periodic_task [req-870e9b46-eec1-4ffc-9da4-68a5d6bf0219 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.270 1188652 INFO oslo_service.periodic_task [req-40222fb4-c0be-4956-848b-9a3017c2373e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.267 1188640 INFO oslo_service.periodic_task [req-c7ea6224-33aa-403f-9b9d-e16ba0d03233 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.271 1188642 INFO oslo_service.periodic_task [req-39b909dd-e099-4e81-9b2e-3c648f266c78 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.268 1188676 INFO oslo_service.periodic_task [req-bc9c52cf-71d2-46e7-8951-1395c5333e45 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.273 1188654 INFO oslo_service.periodic_task [req-997acce5-0ad5-45eb-96aa-67cfdaf813c8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.268 1188628 INFO oslo_service.periodic_task [req-5e567520-f28a-4759-b218-f850876f6bb9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.283 1188622 INFO oslo_service.periodic_task [req-5657087c-2a22-4008-8aa7-676ab4680a1e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.288 1188626 INFO oslo_service.periodic_task [req-43e2f12f-64b1-46c1-b621-0adcf2960a04 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.284 1188692 INFO oslo_service.periodic_task [req-4e94da1d-9120-466a-9145-3efebd91e9a1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.293 1188656 INFO oslo_service.periodic_task [req-84b2209c-b726-414b-9d01-9b2211cebbb3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.329 1188688 INFO oslo_service.periodic_task [req-992b904a-fe43-4315-8b8e-cda23aeffb0a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.340 1188664 INFO oslo_service.periodic_task [req-abe39bed-cd11-4815-8362-b9a2dc1f597a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.333 1188686 INFO oslo_service.periodic_task [req-a17f05e4-2f07-4845-bc41-4aa9785821f2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.383 1188648 INFO oslo_service.periodic_task [req-367a618a-a530-46c3-a20a-a892bf56ae96 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.393 1188684 INFO oslo_service.periodic_task [req-fd9b7cd6-f64c-4116-ad12-b9218aea3368 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.395 1188678 INFO oslo_service.periodic_task [req-8ae24ec2-e7c1-477a-85cd-d057b908fc61 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.398 1188620 INFO oslo_service.periodic_task [req-88d62c31-92b9-455f-9373-b532ea94ef09 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.398 1188690 INFO oslo_service.periodic_task [req-8c8038b0-b344-41e8-805a-0a98e55a016a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.398 1188608 INFO oslo_service.periodic_task [req-c6d22f56-4b82-4961-a211-9e199d227b48 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.406 1188618 INFO oslo_service.periodic_task [req-ffdde32a-45f2-4ccc-abeb-ccddaa2fba8b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.403 1188630 INFO oslo_service.periodic_task [req-563926af-7193-444c-827b-c9f6c15224c9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.402 1188632 INFO oslo_service.periodic_task [req-ccf5e2b9-94c8-4bc5-989c-7d46f6799fc7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.408 1188698 INFO oslo_service.periodic_task [req-3da6e5b0-5737-4a25-a34f-b491f85acaf4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.430 1188702 INFO oslo_service.periodic_task [req-3ea61131-5ca6-43cd-9e9b-f624d43ae868 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.405 1188634 INFO oslo_service.periodic_task [req-b95509ed-440f-4893-b0ca-996535f06929 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.443 1188694 INFO oslo_service.periodic_task [req-33a3dbeb-06d2-4080-86c5-ddb73e34ef72 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.476 1188660 INFO oslo_service.periodic_task [req-f553ad76-3b74-48d9-97b6-2b33b2fd3fd7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.476 1188644 INFO oslo_service.periodic_task [req-7f425198-2a5e-4b50-8be8-0ad9abe72543 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.487 1188712 INFO oslo_service.periodic_task [req-25bf0262-8496-44e6-af7f-9ba675480690 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.506 1188710 INFO oslo_service.periodic_task [req-3e3b32d7-4eb5-4c56-8227-08b4b45f3a6f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.535 1188696 INFO oslo_service.periodic_task [req-53ec786f-b1d5-4f9e-b20f-6581985a49ff - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.543 1188668 INFO oslo_service.periodic_task [req-f6bc32af-c9d8-409e-890e-9435bc68e9f8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.579 1188716 INFO oslo_service.periodic_task [req-81cde596-7d73-4977-a433-e751b825a12d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.600 1188672 INFO oslo_service.periodic_task [req-73a6623d-d443-484f-ad2d-61bd80f9102e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.599 1188670 INFO oslo_service.periodic_task [req-fdbcda3e-d747-4914-952a-c1ac4c524d7e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.610 1188719 INFO oslo_service.periodic_task [req-776cc6df-5bf2-4ace-9fc4-b52e0082477d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.622 1188714 INFO oslo_service.periodic_task [req-92f3282b-a151-471d-95cd-b78cc5cc0bc5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.641 1188646 INFO oslo_service.periodic_task [req-82b159bc-cd31-4d9a-95bd-e379843f8299 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.642 1188704 INFO oslo_service.periodic_task [req-176e2ef6-562c-4eb6-adf7-6c7cec51e251 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.649 1188674 INFO oslo_service.periodic_task [req-930b77dc-8bca-4839-996c-8d0e0feab232 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.692 1188662 INFO oslo_service.periodic_task [req-1953b4c2-3e3f-4f7b-990a-abf29db39101 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.694 1188682 INFO oslo_service.periodic_task [req-7cf292e5-b35d-402f-a493-0abbb0e34a29 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.698 1188658 INFO oslo_service.periodic_task [req-5a63c58a-a4ee-43aa-a64e-5101826eeb68 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.731 1188706 INFO oslo_service.periodic_task [req-8eaa25d0-ce36-4478-8e0a-e001a375502d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.752 1188666 INFO oslo_service.periodic_task [req-522292c7-f99d-4998-aefc-819513fa3673 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.767 1188700 INFO oslo_service.periodic_task [req-db82ee4a-da24-4fa3-8d13-60de1ff3763c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:12.846 1188708 INFO oslo_service.periodic_task [req-e5feacdf-c6ea-4b12-8129-478b0b83acfe - - - - -] 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.690426s] ... ok
{54} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [1.639515s] ... ok
{4} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.394239s] ... ok
{3} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.406097s] ... ok
{8} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.463138s] ... ok
{9} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.430544s] ... ok
{10} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.437244s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.481584s] ... ok
{6} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.507865s] ... ok
{11} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.524315s] ... ok
{24} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.477794s] ... ok
{19} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{38} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [4.072025s] ... ok
{33} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.821303s] ... ok
{31} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [3.876895s] ... ok
{27} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.831759s] ... ok
{37} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [4.035870s] ... ok
{41} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.377370s] ... ok
{46} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [4.406719s] ... ok
{21} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.404803s] ... ok
{52} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [5.042581s] ... ok
{42} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.272636s] ... ok
{54} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [3.345632s] ... ok
{51} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [5.170925s] ... ok
{15} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [5.453844s] ... ok
{40} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.392468s] ... ok
{43} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.351719s] ... ok
{45} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.402022s] ... ok
{49} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [5.198057s] ... ok
{13} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [5.536696s] ... ok
{44} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.462050s] ... ok
{26} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.535626s] ... ok
{35} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.659754s] ... ok
{28} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [6.317357s] ... ok
{32} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [6.123433s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "security_group_instance_association", "security_groups" and FROM element "instances". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{30} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [6.268488s] ... ok
{23} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.623698s] ... ok
{16} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [6.714513s] ... ok
{53} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [6.436628s] ... ok
{47} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [6.663770s] ... ok
{25} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [6.427576s] ... ok
{29} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [6.412089s] ... ok
{20} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [6.876242s] ... ok
{55} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [6.673737s] ... ok
{12} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [6.948709s] ... ok
{48} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [6.823788s] ... ok
{18} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [7.066293s] ... ok
{50} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [6.749587s] ... ok
{36} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [7.389926s] ... ok
{14} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [7.400587s] ... ok
{17} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [7.479598s] ... ok
{39} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [7.477183s] ... ok
{34} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [7.832480s] ... ok
{8} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [5.483436s] ... ok
{11} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [5.368917s] ... ok
{38} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [3.852466s] ... ok
{52} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [2.849005s] ... ok
{2} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [8.313093s] ... ok
{44} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [2.535760s] ... ok
{49} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [2.799719s] ... ok
{14} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [1.210517s] ... ok
{3} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [6.341020s] ... ok
{31} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [4.510688s] ... ok
{18} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [1.484466s] ... ok
{1} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [7.235030s] ... ok
{22} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [9.055062s] ... ok
{37} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [4.617287s] ... ok
{27} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [4.899907s] ... ok
{7} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [9.373630s] ... ok
{10} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [6.977669s] ... ok
{49} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [1.014424s] ... ok
{0} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.365575s] ... ok
{35} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.722909s] ... ok
{51} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [4.153927s] ... ok
{16} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [2.870562s] ... ok
{54} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.399925s] ... ok
{2} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [1.680188s] ... ok
{43} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [4.382597s] ... ok
{4} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [7.910431s] ... ok
{19} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [6.352309s] ... ok
{46} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [5.123697s] ... ok
{41} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [5.533533s] ... ok
{20} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [3.075001s] ... ok
{26} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [4.322557s] ... ok
{30} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.530403s] ... ok
{33} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.953381s] ... ok
{12} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [3.090826s] ... ok
{5} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.560097s] ... ok
{0} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.781348s] ... ok
{23} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [3.672110s] ... ok
{25} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [3.460868s] ... ok
{9} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [7.885260s] ... ok
{24} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.940376s] ... ok
{21} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [5.208411s] ... ok
{6} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.841216s] ... ok
{13} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [4.812736s] ... ok
{40} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [5.107544s] ... ok
{29} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [3.682687s] ... ok
{51} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.115234s] ... ok
{32} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [4.289096s] ... ok
{42} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [5.490166s] ... ok
{17} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.285516s] ... ok
{36} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [3.517464s] ... ok
{28} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [4.549486s] ... ok
{45} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [5.643658s] ... ok
{53} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.651814s] ... ok
{48} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [4.262441s] ... ok
{55} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [4.539861s] ... ok
{50} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.245537s] ... ok
{39} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [4.217806s] ... ok
{34} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [4.051835s] ... ok
{47} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [5.092770s] ... ok
{7} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [2.736313s] ... ok
{50} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [0.627307s] ... ok
{15} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [7.056719s] ... ok
{22} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.592194s] ... ok
======
Totals
======
Ran: 116 tests in 12.9604 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 561.4067 sec.
==============
Worker Balance
==============
- Worker 0 (2 tests) => 0:00:10.149631
- Worker 1 (2 tests) => 0:00:08.927831
- Worker 2 (2 tests) => 0:00:09.995323
- Worker 3 (2 tests) => 0:00:08.749452
- Worker 4 (2 tests) => 0:00:10.306615
- Worker 5 (2 tests) => 0:00:10.044484
- Worker 6 (2 tests) => 0:00:10.351939
- Worker 7 (2 tests) => 0:00:12.111532
- Worker 8 (2 tests) => 0:00:07.948497
- Worker 9 (2 tests) => 0:00:10.318586
- Worker 10 (2 tests) => 0:00:09.417378
- Worker 11 (2 tests) => 0:00:07.895832
- Worker 12 (2 tests) => 0:00:10.043151
- Worker 13 (2 tests) => 0:00:10.350635
- Worker 14 (2 tests) => 0:00:08.612502
- Worker 15 (2 tests) => 0:00:12.511657
- Worker 16 (2 tests) => 0:00:09.586830
- Worker 17 (2 tests) => 0:00:10.766615
- Worker 18 (2 tests) => 0:00:08.552356
- Worker 19 (2 tests) => 0:00:09.645318
- Worker 20 (2 tests) => 0:00:09.952802
- Worker 21 (2 tests) => 0:00:10.615270
- Worker 22 (2 tests) => 0:00:12.648967
- Worker 23 (2 tests) => 0:00:10.297341
- Worker 24 (2 tests) => 0:00:10.419822
- Worker 25 (2 tests) => 0:00:09.889770
- Worker 26 (2 tests) => 0:00:09.859357
- Worker 27 (2 tests) => 0:00:08.733278
- Worker 28 (2 tests) => 0:00:10.867938
- Worker 29 (2 tests) => 0:00:10.096727
- Worker 30 (2 tests) => 0:00:09.800560
- Worker 31 (2 tests) => 0:00:08.388662
- Worker 32 (2 tests) => 0:00:10.413616
- Worker 33 (2 tests) => 0:00:09.776293
- Worker 34 (2 tests) => 0:00:11.885456
- Worker 35 (2 tests) => 0:00:09.384781
- Worker 36 (2 tests) => 0:00:10.909248
- Worker 37 (2 tests) => 0:00:08.655134
- Worker 38 (2 tests) => 0:00:07.925370
- Worker 39 (2 tests) => 0:00:11.697605
- Worker 40 (2 tests) => 0:00:10.503253
- Worker 41 (2 tests) => 0:00:09.912724
- Worker 42 (2 tests) => 0:00:10.763550
- Worker 43 (2 tests) => 0:00:09.735885
- Worker 44 (2 tests) => 0:00:07.999344
- Worker 45 (2 tests) => 0:00:11.048958
- Worker 46 (2 tests) => 0:00:09.531535
- Worker 47 (2 tests) => 0:00:11.757936
- Worker 48 (2 tests) => 0:00:11.088435
- Worker 49 (3 tests) => 0:00:09.015140
- Worker 50 (3 tests) => 0:00:11.624770
- Worker 51 (3 tests) => 0:00:10.443159
- Worker 52 (2 tests) => 0:00:07.893040
- Worker 53 (2 tests) => 0:00:11.089708
- Worker 54 (3 tests) => 0:00:09.388911
- Worker 55 (2 tests) => 0:00:11.216960
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.374
nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid 9.366
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True 9.055
nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change 8.313
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 7.910
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True 7.885
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.841
nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules 7.832
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False 7.560
nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False 7.480
__________________________________________________________________________ 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@1aa89f0ed17b83ace41cfc420b4b70c40c9703df#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.limit==1.5.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='311265651'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
2022-03-16 12:00:44.433 1189275 INFO oslo_service.periodic_task [req-d70711c1-5d17-4b39-a9e3-6902a398fc46 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.563 1189265 INFO oslo_service.periodic_task [req-7268eff6-7177-4968-9823-8e5ab0a26839 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.583 1189277 INFO oslo_service.periodic_task [req-fc6c2271-13ec-4920-997b-9f9c9f7255c9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.652 1189279 INFO oslo_service.periodic_task [req-b5009129-582d-4a28-8261-f59ab0dddf60 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.662 1189297 INFO oslo_service.periodic_task [req-f989749d-9044-420a-825c-f8eccd525ddc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.672 1189287 INFO oslo_service.periodic_task [req-4d10bcb6-54a9-4ce8-80cc-2c891fda2dd8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.680 1189305 INFO oslo_service.periodic_task [req-b31a229b-51da-4415-9ab6-8997ba023cc2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.706 1189281 INFO oslo_service.periodic_task [req-4ddf782e-e92c-4b8b-b0be-05dd2fa236e7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.710 1189273 INFO oslo_service.periodic_task [req-15d361ea-267a-4b97-a1db-37cb0f6f2765 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.712 1189319 INFO oslo_service.periodic_task [req-181c5178-4756-4064-a328-9be18b2067b5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.754 1189323 INFO oslo_service.periodic_task [req-75292216-dbad-43f3-b1b0-db8d7cc916a0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.781 1189267 INFO oslo_service.periodic_task [req-81b96f42-9950-4b3b-90f0-5fd95b12ee49 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.802 1189303 INFO oslo_service.periodic_task [req-6e8db2b0-cdee-4ccc-8a6b-5507a6938515 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.829 1189321 INFO oslo_service.periodic_task [req-5588e35b-98dd-4cf3-a4c0-62f6c534e7d1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.832 1189351 INFO oslo_service.periodic_task [req-fba4fd01-bb88-4fe0-8465-c0eb6b2afc81 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.831 1189269 INFO oslo_service.periodic_task [req-91b1fa85-a10e-44c0-a3d6-6e7618a57fc1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.835 1189289 INFO oslo_service.periodic_task [req-d77570d2-408b-453e-896a-ac2d77db75ad - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.842 1189345 INFO oslo_service.periodic_task [req-9a0eed59-8c87-4157-a9b8-e524e4bc6bb1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.846 1189293 INFO oslo_service.periodic_task [req-4cce12c4-a766-44ac-97d5-4701c5eaf186 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.852 1189315 INFO oslo_service.periodic_task [req-0305ce76-9c92-445c-9edc-f60ed9b39d9e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.857 1189329 INFO oslo_service.periodic_task [req-90c2eb5c-38c7-4b19-a2ab-6113d887f7a5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.863 1189271 INFO oslo_service.periodic_task [req-b401b07c-e8fa-40a7-8f43-b58a2e450596 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.896 1189339 INFO oslo_service.periodic_task [req-7b08f61f-cbd5-4a03-9a97-a05a2cc930a7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.908 1189301 INFO oslo_service.periodic_task [req-120009a5-8c8c-4bc6-8f87-b4bd0e54bd73 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.920 1189333 INFO oslo_service.periodic_task [req-af7be4a3-7127-4037-ba91-03adea513d62 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.922 1189361 INFO oslo_service.periodic_task [req-7ec10a73-148b-497f-96b2-36bfbe96a9dc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.947 1189331 INFO oslo_service.periodic_task [req-9548a7f6-736d-4203-98d1-7f40c0607deb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.958 1189359 INFO oslo_service.periodic_task [req-ff7bd490-6d94-47f5-9b91-16e1c76a4b06 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.972 1189317 INFO oslo_service.periodic_task [req-3cd4644a-665d-4bb8-ad40-811a97057bc2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.975 1189291 INFO oslo_service.periodic_task [req-c50ffd2b-834a-4ad6-89a9-19ec2ccc6d80 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:44.978 1189376 INFO oslo_service.periodic_task [req-c32b7774-5b2c-494c-99c8-00b72e72c8db - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:45.002 1189367 INFO oslo_service.periodic_task [req-8384d89e-63dc-4921-b5af-1782cf285455 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:45.006 1189343 INFO oslo_service.periodic_task [req-ed6ccf11-7ffe-45f3-83b8-5b7f579325d7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:45.011 1189311 INFO oslo_service.periodic_task [req-47e9a300-57db-41bf-bdd5-f75088f1990b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:45.019 1189283 INFO oslo_service.periodic_task [req-20b0ba05-1da8-4bd0-841f-6a48696795fc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:45.023 1189337 INFO oslo_service.periodic_task [req-312b6f6d-26cb-4c96-be5e-be3b37202b9e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:45.031 1189374 INFO oslo_service.periodic_task [req-81110b00-2be6-470a-9179-ddcf6d938326 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:45.070 1189349 INFO oslo_service.periodic_task [req-321cfeb8-0538-4876-b095-15b37d0d9461 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:45.088 1189299 INFO oslo_service.periodic_task [req-9b932ee6-380a-4e10-b89a-4722c8cb4b9d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:45.111 1189371 INFO oslo_service.periodic_task [req-64d04847-369c-4993-b75c-e29e4b455a99 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:45.110 1189327 INFO oslo_service.periodic_task [req-7dded0ab-f2df-4c97-b831-e36dddd553dc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:45.110 1189355 INFO oslo_service.periodic_task [req-885254c9-aff7-4027-a69b-86a03de8e34c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:45.124 1189341 INFO oslo_service.periodic_task [req-421e8c22-401d-4107-bed4-77ff092e0e4d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:45.122 1189295 INFO oslo_service.periodic_task [req-bd018d19-8762-4caf-8c4b-eb0923f9ccc6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:45.142 1189347 INFO oslo_service.periodic_task [req-0786bcd6-dea9-48cb-8ca7-0dc96a40838d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:45.144 1189285 INFO oslo_service.periodic_task [req-434f9654-41d4-45ca-81df-0722820a2400 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:45.178 1189313 INFO oslo_service.periodic_task [req-b236ea66-eac2-4ebf-a43c-2be0dfa53539 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:45.199 1189365 INFO oslo_service.periodic_task [req-dbdb7f1f-ef97-4920-bf85-1e2e84a39e0d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:45.201 1189335 INFO oslo_service.periodic_task [req-783872ee-f133-40c9-8652-54fcb7b0f97e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:45.213 1189307 INFO oslo_service.periodic_task [req-c7ba488c-1a07-4fc8-b523-d5ac15e3daf1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:45.241 1189369 INFO oslo_service.periodic_task [req-9c340dcc-097d-483c-a68a-56bba7953cd6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:45.255 1189325 INFO oslo_service.periodic_task [req-583a3b16-ab10-4487-9f67-4724ca7517b3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:45.267 1189309 INFO oslo_service.periodic_task [req-94f4500a-c8af-4fb2-8bc2-fa650abd0f39 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:45.302 1189353 INFO oslo_service.periodic_task [req-3809bb68-64c5-4140-9efc-154f13279c1c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:45.433 1189357 INFO oslo_service.periodic_task [req-67adf744-15ca-41f9-ba61-d19644648ba8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:00:45.445 1189363 INFO oslo_service.periodic_task [req-0d3005e5-2894-4868-95b2-ae1423a4ff78 - - - - -] 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.664730s] ... ok
{2} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [1.703490s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.381752s] ... ok
{7} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.401590s] ... ok
{11} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.439015s] ... ok
{6} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.556412s] ... ok
{8} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.706126s] ... ok
{9} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.439776s] ... ok
{10} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.425776s] ... ok
{12} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.875974s] ... ok
{0} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [3.382272s] ... ok
{34} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [3.773947s] ... ok
{32} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.913578s] ... ok
{24} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.633723s] ... ok
{37} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [4.038544s] ... ok
{21} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{35} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.883457s] ... ok
{31} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.982746s] ... ok
{16} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [4.643710s] ... ok
{44} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.122396s] ... ok
{47} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [4.495726s] ... ok
{15} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [4.537099s] ... ok
{19} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [5.088816s] ... ok
{55} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [4.986552s] ... ok
{48} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.180711s] ... ok
{51} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [5.174980s] ... ok
{28} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [5.361275s] ... ok
{18} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [5.491579s] ... ok
{45} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.406970s] ... ok
{33} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.625629s] ... ok
{38} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.548434s] ... ok
{52} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [5.455165s] ... ok
{49} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.387278s] ... ok
{46} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.616186s] ... ok
{36} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [6.153629s] ... ok
{27} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [6.515229s] ... ok
{26} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [6.286574s] ... ok
{14} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [6.468173s] ... ok
{54} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [6.281560s] ... ok
{25} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.519840s] ... ok
{42} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [6.359898s] ... ok
{40} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [6.601275s] ... ok
{23} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [6.679087s] ... ok
{22} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [6.662646s] ... ok
{20} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [7.271681s] ... ok
{36} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [0.828330s] ... ok
{43} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [7.221769s] ... ok
{37} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [3.358739s] ... ok
{50} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [7.175963s] ... ok
{41} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [7.258212s] ... ok
{39} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [7.457183s] ... ok
{17} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [7.391526s] ... ok
{44} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [3.065441s] ... ok
{35} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [3.440923s] ... ok
{30} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [7.288320s] ... ok
{11} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [5.474876s] ... ok
{9} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [5.195946s] ... ok
{24} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [3.850805s] ... ok
{53} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [7.637233s] ... ok
{32} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [4.080480s] ... ok
{7} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [6.245815s] ... ok
{37} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [1.047227s] ... ok
{10} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [5.777556s] ... ok
{3} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [8.527931s] ... ok
{12} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [5.694624s] ... ok
{31} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [4.371399s] ... ok
{29} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [8.865353s] ... ok
{21} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [4.650206s] ... ok
{13} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [8.880502s] ... ok
{2} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [7.541034s] ... ok
{14} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [2.974487s] ... ok
{26} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.201645s] ... ok
{48} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [4.353328s] ... ok
{1} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.806252s] ... ok
{27} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.394854s] ... ok
{51} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [4.469297s] ... ok
{46} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [3.647844s] ... ok
{45} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [4.220372s] ... ok
{4} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [8.392083s] ... ok
{38} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [4.112937s] ... ok
{33} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [4.278816s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "security_group_instance_association", "security_groups" and FROM element "instances". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{34} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [6.194366s] ... ok
{28} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [4.735602s] ... ok
{22} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [3.039182s] ... ok
{3} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [1.614146s] ... ok
{52} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.367261s] ... ok
{23} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [3.419712s] ... ok
{55} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [5.131912s] ... ok
{6} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.968060s] ... ok
{5} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [8.336586s] ... ok
{8} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.838484s] ... ok
{43} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [3.241664s] ... ok
{25} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [3.944552s] ... ok
{38} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.563431s] ... ok
{47} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [5.967059s] ... ok
{20} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.474181s] ... ok
{54} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [4.198929s] ... ok
{19} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [5.651130s] ... ok
{17} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [3.127412s] ... ok
{0} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [7.726872s] ... ok
{42} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [4.297528s] ... ok
{49} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [4.913687s] ... ok
{41} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [3.463898s] ... ok
{40} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.436506s] ... ok
{16} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [6.791019s] ... ok
{30} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.684730s] ... ok
{1} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [1.647582s] ... ok
{4} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.619251s] ... ok
{13} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [2.644348s] ... ok
{39} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [4.180480s] ... ok
{15} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [7.252625s] ... ok
{29} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [3.364700s] ... ok
{18} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.677613s] ... ok
{36} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [5.175798s] ... ok
{50} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [5.417593s] ... ok
{53} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [5.119941s] ... ok
======
Totals
======
Ran: 116 tests in 13.4552 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 564.3050 sec.
==============
Worker Balance
==============
- Worker 0 (2 tests) => 0:00:11.111433
- Worker 1 (2 tests) => 0:00:11.455314
- Worker 2 (2 tests) => 0:00:09.246853
- Worker 3 (2 tests) => 0:00:10.143406
- Worker 4 (3 tests) => 0:00:11.680874
- Worker 5 (2 tests) => 0:00:10.720900
- Worker 6 (2 tests) => 0:00:10.529902
- Worker 7 (2 tests) => 0:00:08.650035
- Worker 8 (2 tests) => 0:00:10.546778
- Worker 9 (2 tests) => 0:00:07.638632
- Worker 10 (2 tests) => 0:00:08.205279
- Worker 11 (2 tests) => 0:00:07.916740
- Worker 12 (2 tests) => 0:00:08.573140
- Worker 13 (2 tests) => 0:00:11.525773
- Worker 14 (2 tests) => 0:00:09.444719
- Worker 15 (2 tests) => 0:00:11.790855
- Worker 16 (2 tests) => 0:00:11.436576
- Worker 17 (2 tests) => 0:00:10.521449
- Worker 18 (2 tests) => 0:00:12.170216
- Worker 19 (2 tests) => 0:00:10.742489
- Worker 20 (2 tests) => 0:00:10.747972
- Worker 21 (2 tests) => 0:00:08.424278
- Worker 22 (2 tests) => 0:00:09.702698
- Worker 23 (2 tests) => 0:00:10.100223
- Worker 24 (2 tests) => 0:00:07.486712
- Worker 25 (2 tests) => 0:00:10.466091
- Worker 26 (2 tests) => 0:00:09.489459
- Worker 27 (2 tests) => 0:00:09.911418
- Worker 28 (2 tests) => 0:00:10.100915
- Worker 29 (2 tests) => 0:00:12.232323
- Worker 30 (2 tests) => 0:00:10.974808
- Worker 31 (2 tests) => 0:00:08.356152
- Worker 32 (2 tests) => 0:00:07.998555
- Worker 33 (2 tests) => 0:00:09.906025
- Worker 34 (2 tests) => 0:00:09.969298
- Worker 35 (2 tests) => 0:00:07.324974
- Worker 36 (3 tests) => 0:00:12.159622
- Worker 37 (3 tests) => 0:00:08.447444
- Worker 38 (3 tests) => 0:00:10.227089
- Worker 39 (2 tests) => 0:00:11.639301
- Worker 40 (2 tests) => 0:00:11.039623
- Worker 41 (2 tests) => 0:00:10.724632
- Worker 42 (2 tests) => 0:00:10.660808
- Worker 43 (2 tests) => 0:00:10.465442
- Worker 44 (2 tests) => 0:00:07.188895
- Worker 45 (2 tests) => 0:00:09.628518
- Worker 46 (2 tests) => 0:00:09.265820
- Worker 47 (2 tests) => 0:00:10.463657
- Worker 48 (2 tests) => 0:00:09.536122
- Worker 49 (2 tests) => 0:00:10.302455
- Worker 50 (2 tests) => 0:00:12.595470
- Worker 51 (2 tests) => 0:00:09.648079
- Worker 52 (2 tests) => 0:00:09.824866
- Worker 53 (2 tests) => 0:00:12.758434
- Worker 54 (2 tests) => 0:00:10.481806
- Worker 55 (2 tests) => 0:00:10.120420
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.806
nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate 8.881
nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate 8.865
nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change 8.528
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 8.392
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True 8.337
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.968
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False 7.838
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False 7.727
nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True 7.637
__________________________________________________________________________ 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@1aa89f0ed17b83ace41cfc420b4b70c40c9703df#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.limit==1.5.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='715355263'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
2022-03-16 12:01:18.356 1190036 INFO oslo_service.periodic_task [req-8731405f-bd48-48ef-b677-6e755607f13c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.371 1190056 INFO oslo_service.periodic_task [req-d173b058-51f5-4008-9c22-c27987e3a412 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.435 1190060 INFO oslo_service.periodic_task [req-7d522669-2796-47d0-841f-73a425a461ee - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.435 1190068 INFO oslo_service.periodic_task [req-9384a732-4303-4b35-b916-48730855affc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.459 1190076 INFO oslo_service.periodic_task [req-066f9808-3a5d-46c2-a022-1a068a78681a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.465 1190038 INFO oslo_service.periodic_task [req-5e69e9dd-7aea-4d4b-86e5-eb917b8b154b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.477 1190042 INFO oslo_service.periodic_task [req-f72ddd3a-8d1d-43e8-bb9a-63236836b3a1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.506 1190104 INFO oslo_service.periodic_task [req-0ae5cabe-25cd-4cc2-af28-a6aea31e4017 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.508 1190072 INFO oslo_service.periodic_task [req-b5c540d8-ffd7-4cb1-a571-dba3d9d9d888 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.505 1190048 INFO oslo_service.periodic_task [req-ac95bd07-0b3c-498f-87f7-953a7fd4352e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.535 1190066 INFO oslo_service.periodic_task [req-f476ae15-996b-4ecb-b376-91ec3b33ffbf - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.539 1190046 INFO oslo_service.periodic_task [req-532d6023-81a3-48ed-bf10-1d5a4c80c1b3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.555 1190062 INFO oslo_service.periodic_task [req-e7417330-351a-486b-a03c-9475363318bb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.563 1190110 INFO oslo_service.periodic_task [req-df8fa208-62e0-4966-8d62-3d8f3197871c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.568 1190138 INFO oslo_service.periodic_task [req-b2678e7f-7f65-4c53-bedd-0de26cc818be - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.571 1190064 INFO oslo_service.periodic_task [req-7b365db3-ce39-4234-a2cb-808d8b291eba - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.573 1190074 INFO oslo_service.periodic_task [req-68080f5d-bd4e-4791-bf8d-c3ddba3d6806 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.579 1190084 INFO oslo_service.periodic_task [req-1962e701-0054-432f-af5c-c976051b6439 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.580 1190114 INFO oslo_service.periodic_task [req-f5752bdb-2a1d-40af-bab0-e21d79df6ef9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.585 1190118 INFO oslo_service.periodic_task [req-4f0dd4e1-e611-4927-916c-fab1188d49e6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.591 1190052 INFO oslo_service.periodic_task [req-85bba202-2212-4b8b-b142-5fbdd1a7a78d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.593 1190108 INFO oslo_service.periodic_task [req-a88116c2-f9af-44f3-9a82-de3f79ba1e21 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.603 1190054 INFO oslo_service.periodic_task [req-678f24da-4edc-4bfc-b738-948e55f975d9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.622 1190100 INFO oslo_service.periodic_task [req-d99e310d-f241-4389-8ee2-cc98d47b62ba - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.636 1190116 INFO oslo_service.periodic_task [req-4bb4a585-77db-42b5-9e6b-f852edaf4825 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.665 1190130 INFO oslo_service.periodic_task [req-caf6a1d3-ea42-49f2-8c3a-620c39291896 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.673 1190080 INFO oslo_service.periodic_task [req-2eb86bbb-c540-45b9-8269-bd5fd9d286e8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.690 1190112 INFO oslo_service.periodic_task [req-267b1a6e-2709-4f52-9fa7-399806c19764 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.698 1190132 INFO oslo_service.periodic_task [req-8bd68c8c-6e24-486c-9d55-ec797f1522fe - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.741 1190147 INFO oslo_service.periodic_task [req-185d2d54-d95b-4bb5-bf85-16838a968c9b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.746 1190134 INFO oslo_service.periodic_task [req-9470501e-9326-4f29-a29b-de30a450951c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.748 1190070 INFO oslo_service.periodic_task [req-002dd652-c1c5-4b61-8913-3e58bd27e420 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.759 1190124 INFO oslo_service.periodic_task [req-6cf4fe55-f6f6-4bad-9a4c-71c1078f737f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.762 1190128 INFO oslo_service.periodic_task [req-4e95c66a-c86f-4bdc-8d7e-21853b5f4149 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.767 1190094 INFO oslo_service.periodic_task [req-955a75ca-5571-4421-b0f6-e06dabd77846 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.776 1190050 INFO oslo_service.periodic_task [req-a1d6cfc0-3486-47d1-92b3-38d7a2556500 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.791 1190086 INFO oslo_service.periodic_task [req-104357ca-61ad-4f39-8cb1-37b6bb2a0cfa - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.798 1190140 INFO oslo_service.periodic_task [req-a6221452-73ef-415b-b806-fcbb8ba2b6c3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.799 1190136 INFO oslo_service.periodic_task [req-0cd278bc-5501-467a-94a8-7eb32a83de73 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.806 1190040 INFO oslo_service.periodic_task [req-ac55aa9e-b0cc-40c0-84ad-b14a24cadc68 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.799 1190126 INFO oslo_service.periodic_task [req-962632f0-bde0-4c94-9f26-327f8dc89d07 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.802 1190122 INFO oslo_service.periodic_task [req-b1b4186a-ac30-4d78-ab81-940eb1215349 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.828 1190145 INFO oslo_service.periodic_task [req-a9647762-8afc-4752-b254-cefa1953c8fb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.831 1190088 INFO oslo_service.periodic_task [req-274b3508-d85a-4a1d-9df3-93c11b48c008 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.847 1190058 INFO oslo_service.periodic_task [req-eeba7146-9930-4fe4-970a-b46c49217efe - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.859 1190078 INFO oslo_service.periodic_task [req-cdf6143d-18c1-48c2-ac26-2a84684b38e5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.874 1190044 INFO oslo_service.periodic_task [req-f062a902-5250-42e4-ab7b-9eb25da0833d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.933 1190102 INFO oslo_service.periodic_task [req-a5aec29e-2325-4294-90e1-309aa531fcef - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:18.964 1190090 INFO oslo_service.periodic_task [req-8b9774ba-42ca-43e3-bee5-0c27dcd0ffc1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:19.041 1190106 INFO oslo_service.periodic_task [req-c9537784-e89f-4d03-a4d0-e76d5fd829ee - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:19.090 1190098 INFO oslo_service.periodic_task [req-42543cfa-497a-4a01-b084-80f7f75376a4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:19.106 1190082 INFO oslo_service.periodic_task [req-73b4b82e-5cc0-4920-a4bf-44a3b7ff9e40 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:19.148 1190120 INFO oslo_service.periodic_task [req-45881061-6b23-4cd8-9e81-897889f71dc0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:19.188 1190142 INFO oslo_service.periodic_task [req-7cdccf5c-6d69-47f2-9ed9-853c1bc5e7f8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:19.213 1190092 INFO oslo_service.periodic_task [req-8f24f868-baa4-4d34-bac6-d5f31b6d1239 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:19.504 1190096 INFO oslo_service.periodic_task [req-71c16dbf-33e0-404e-9bec-1163d8519023 - - - - -] 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.662783s] ... ok
{2} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.656187s] ... ok
{12} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.456163s] ... ok
{6} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.411177s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.445440s] ... ok
{9} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.485561s] ... ok
{8} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.512319s] ... ok
{49} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [2.456476s] ... ok
{7} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.443098s] ... ok
{11} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.434550s] ... ok
{4} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.469356s] ... ok
{1} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [3.229344s] ... ok
{21} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [2.927001s] ... ok
{36} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.912546s] ... ok
{47} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [3.880505s] ... ok
{37} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [4.088018s] ... ok
{33} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.821102s] ... ok
{10} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [4.447055s] ... ok
{34} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [4.368186s] ... ok
{16} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [4.443131s] ... ok
{31} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [3.824764s] ... ok
{40} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.277365s] ... ok
{51} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [4.523644s] ... ok
{30} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{53} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [3.973820s] ... ok
{52} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [4.479931s] ... ok
{46} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [4.724440s] ... ok
{50} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [5.082284s] ... ok
{48} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.234249s] ... ok
{54} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [5.123769s] ... ok
{45} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.159452s] ... ok
{40} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [1.081051s] ... ok
{44} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.272828s] ... ok
{39} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.575016s] ... ok
{24} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.612308s] ... ok
{38} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.544350s] ... ok
{19} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [5.700448s] ... ok
{42} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [5.161442s] ... ok
{25} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [5.946307s] ... ok
{27} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.940010s] ... ok
{43} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [6.110589s] ... ok
{32} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [6.522133s] ... ok
{20} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [6.743003s] ... ok
{22} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [6.545497s] ... ok
{17} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [6.522611s] ... ok
{14} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [6.703754s] ... ok
{55} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [6.512774s] ... ok
{48} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.452564s] ... ok
{18} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [6.899452s] ... ok
{28} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [6.390324s] ... ok
{49} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.433428s] ... ok
{29} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [6.883403s] ... ok
{15} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [7.383980s] ... ok
{41} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [7.359451s] ... ok
{26} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [7.177994s] ... ok
{53} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [2.993330s] ... ok
{23} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [7.063567s] ... ok
{11} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [5.002830s] ... ok
{9} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [5.192194s] ... ok
{12} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [5.407768s] ... ok
{37} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [3.697316s] ... ok
{35} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [7.393708s] ... ok
{27} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [1.644922s] ... ok
{13} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [8.255471s] ... ok
{40} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [2.931626s] ... ok
{33} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [4.466912s] ... ok
{36} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [4.918483s] ... ok
{2} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [7.042677s] ... ok
{3} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [7.403511s] ... ok
{7} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [6.409244s] ... ok
{39} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [3.737917s] ... ok
{0} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.613708s] ... ok
{45} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [4.055760s] ... ok
{18} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [2.610345s] ... ok
{46} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [4.586378s] ... ok
{47} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [5.702757s] ... ok
{5} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [7.322812s] ... ok
{44} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [4.297288s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "security_group_instance_association", "security_groups" and FROM element "instances". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{8} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [7.280483s] ... ok
{51} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [5.305096s] ... ok
{21} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.612501s] ... ok
{22} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.202331s] ... ok
{54} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [4.546939s] ... ok
{14} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [3.237034s] ... ok
{1} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [6.915582s] ... ok
{34} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [5.783243s] ... ok
{38} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [4.450411s] ... ok
{50} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [4.893919s] ... ok
{24} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [4.622586s] ... ok
{30} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [5.675481s] ... ok
{42} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [4.551487s] ... ok
{6} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.969592s] ... ok
{4} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [7.704471s] ... ok
{51} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.740921s] ... ok
{31} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [6.284178s] ... ok
{17} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.944158s] ... ok
{52} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [5.920249s] ... ok
{15} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [3.368155s] ... ok
{35} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [2.918779s] ... ok
{26} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.341315s] ... ok
{29} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.752984s] ... ok
{48} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [4.100612s] ... ok
{28} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [3.983555s] ... ok
{25} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [4.889972s] ... ok
{55} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [4.383231s] ... ok
{10} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [6.874686s] ... ok
{13} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [2.925407s] ... ok
{32} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [4.645048s] ... ok
{41} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [3.981078s] ... ok
{23} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [3.861971s] ... ok
{49} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [4.685399s] ... ok
{20} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [5.228605s] ... ok
{16} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [7.550769s] ... ok
{43} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [6.260849s] ... ok
{19} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [7.067474s] ... ok
{47} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [3.748531s] ... ok
======
Totals
======
Ran: 116 tests in 13.6375 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 558.9323 sec.
==============
Worker Balance
==============
- Worker 0 (1 tests) => 0:00:09.613708
- Worker 1 (2 tests) => 0:00:10.146840
- Worker 2 (2 tests) => 0:00:08.701482
- Worker 3 (2 tests) => 0:00:09.068517
- Worker 4 (2 tests) => 0:00:10.175274
- Worker 5 (2 tests) => 0:00:09.770985
- Worker 6 (2 tests) => 0:00:10.383777
- Worker 7 (2 tests) => 0:00:08.855118
- Worker 8 (2 tests) => 0:00:09.795693
- Worker 9 (2 tests) => 0:00:07.680782
- Worker 10 (2 tests) => 0:00:11.322433
- Worker 11 (2 tests) => 0:00:07.439068
- Worker 12 (2 tests) => 0:00:07.866389
- Worker 13 (2 tests) => 0:00:11.182599
- Worker 14 (2 tests) => 0:00:09.942081
- Worker 15 (2 tests) => 0:00:10.753714
- Worker 16 (2 tests) => 0:00:11.994917
- Worker 17 (2 tests) => 0:00:10.468963
- Worker 18 (2 tests) => 0:00:09.511930
- Worker 19 (2 tests) => 0:00:12.769528
- Worker 20 (2 tests) => 0:00:11.973435
- Worker 21 (2 tests) => 0:00:09.541178
- Worker 22 (2 tests) => 0:00:09.749028
- Worker 23 (2 tests) => 0:00:10.926735
- Worker 24 (2 tests) => 0:00:10.235963
- Worker 25 (2 tests) => 0:00:10.837967
- Worker 26 (2 tests) => 0:00:10.521292
- Worker 27 (2 tests) => 0:00:07.586328
- Worker 28 (2 tests) => 0:00:10.375544
- Worker 29 (2 tests) => 0:00:10.637893
- Worker 30 (2 tests) => 0:00:09.221262
- Worker 31 (2 tests) => 0:00:10.110348
- Worker 32 (2 tests) => 0:00:11.168925
- Worker 33 (2 tests) => 0:00:08.289407
- Worker 34 (2 tests) => 0:00:10.152515
- Worker 35 (2 tests) => 0:00:10.313625
- Worker 36 (2 tests) => 0:00:08.832866
- Worker 37 (2 tests) => 0:00:07.786257
- Worker 38 (2 tests) => 0:00:09.996112
- Worker 39 (2 tests) => 0:00:09.313892
- Worker 40 (3 tests) => 0:00:08.292802
- Worker 41 (2 tests) => 0:00:11.342549
- Worker 42 (2 tests) => 0:00:09.715083
- Worker 43 (2 tests) => 0:00:12.372327
- Worker 44 (2 tests) => 0:00:09.571212
- Worker 45 (2 tests) => 0:00:09.216468
- Worker 46 (2 tests) => 0:00:09.312287
- Worker 47 (3 tests) => 0:00:13.334534
- Worker 48 (3 tests) => 0:00:10.791450
- Worker 49 (3 tests) => 0:00:11.579042
- Worker 50 (2 tests) => 0:00:09.978341
- Worker 51 (3 tests) => 0:00:10.571756
- Worker 52 (2 tests) => 0:00:10.401269
- Worker 53 (2 tests) => 0:00:06.968554
- Worker 54 (2 tests) => 0:00:09.672420
- Worker 55 (2 tests) => 0:00:10.897423
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.614
nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute 8.255
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.970
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 7.704
nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host 7.551
nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change 7.404
nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 7.394
nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate 7.384
nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists 7.359
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True 7.323
__________________________________________________________________________ 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@1aa89f0ed17b83ace41cfc420b4b70c40c9703df#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.limit==1.5.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='1202208512'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
2022-03-16 12:01:52.025 1190670 INFO oslo_service.periodic_task [req-fbf95355-867e-4954-b8df-f808c28fff02 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.149 1190662 INFO oslo_service.periodic_task [req-3be58d18-63c5-4f17-8ad2-c14ea15d16bb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.157 1190692 INFO oslo_service.periodic_task [req-00b08ca9-8013-4ff3-a487-79d984b23dc6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.160 1190690 INFO oslo_service.periodic_task [req-610776f1-f0f8-4140-a23a-0fd10bb72683 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.176 1190656 INFO oslo_service.periodic_task [req-4f81048a-0e7a-4282-8c11-0ac59d0fcd07 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.177 1190682 INFO oslo_service.periodic_task [req-3942e76b-3335-4c00-8071-77024873028a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.180 1190644 INFO oslo_service.periodic_task [req-960f47a4-71eb-4850-9c2d-b00cb9cfb43f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.190 1190686 INFO oslo_service.periodic_task [req-8bbd66f0-e758-438e-b002-1372778d2fec - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.204 1190726 INFO oslo_service.periodic_task [req-c8cf7e36-729b-4934-8221-9562127ad212 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.206 1190654 INFO oslo_service.periodic_task [req-27d6f74b-34ff-48bc-863e-5dcaa4200afb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.213 1190666 INFO oslo_service.periodic_task [req-22d13a6e-76c5-4bb4-a342-4386c9925874 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.221 1190650 INFO oslo_service.periodic_task [req-822e925b-f54b-4206-b337-088c3a169a68 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.228 1190648 INFO oslo_service.periodic_task [req-abc22bf3-0759-4321-b3ef-d181e5b4c400 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.229 1190742 INFO oslo_service.periodic_task [req-a91df4ab-6243-4de8-940c-3862b2118a40 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.263 1190696 INFO oslo_service.periodic_task [req-46583399-7e3b-4df9-850d-e8131b1b2923 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.269 1190660 INFO oslo_service.periodic_task [req-b220b4e7-8ea4-4f7c-8980-e64c9bfbe906 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.323 1190708 INFO oslo_service.periodic_task [req-4a5e5738-5a1d-4e17-8c7f-8483626065af - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.329 1190728 INFO oslo_service.periodic_task [req-741cd3f6-98f2-4c0d-9fea-0d272cb97fc3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.333 1190714 INFO oslo_service.periodic_task [req-6fc7aa74-bdf9-4ffe-8e1e-d87d1b5c41a8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.333 1190646 INFO oslo_service.periodic_task [req-05959acd-bdc5-42ac-bc3f-932df40be6e5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.333 1190734 INFO oslo_service.periodic_task [req-2d6562e8-e328-4b57-a389-f7be0b044cb7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.358 1190700 INFO oslo_service.periodic_task [req-5a067206-01bc-4b77-be42-a94eb48bf604 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.359 1190751 INFO oslo_service.periodic_task [req-4e33733a-0501-4075-bdae-7a871afa869d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.364 1190694 INFO oslo_service.periodic_task [req-fcfb4a95-8f3b-40c5-bd14-ec90ac0ac04b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.364 1190736 INFO oslo_service.periodic_task [req-6a17bedd-47eb-4f95-a258-dd3a8ed47a5d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.378 1190738 INFO oslo_service.periodic_task [req-1455071a-a891-4c3b-80bf-0ffd1f5df2b1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.422 1190712 INFO oslo_service.periodic_task [req-244a25e7-e4b1-4ae3-869d-b56d98f79dd2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.426 1190720 INFO oslo_service.periodic_task [req-caf37e76-a7d1-43d4-ae67-e9e375b8e0d8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.435 1190722 INFO oslo_service.periodic_task [req-d975f79c-b005-4f05-b130-c2c0317613dd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.464 1190748 INFO oslo_service.periodic_task [req-638ce715-0bd6-46f9-91ce-f8bfacb2f559 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.484 1190698 INFO oslo_service.periodic_task [req-77cf2084-8826-4e5c-94c4-b4622e3a02b9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.518 1190704 INFO oslo_service.periodic_task [req-629d72b3-c7e9-4ecb-a718-62e8fd82ce55 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.525 1190755 INFO oslo_service.periodic_task [req-a14fe6e0-5085-4568-a02b-505003fac848 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.530 1190676 INFO oslo_service.periodic_task [req-658e56be-312c-4a1b-b548-63a9d64be00e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.540 1190668 INFO oslo_service.periodic_task [req-074dd38c-ddac-4ab4-80ef-c0643b55abc8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.564 1190732 INFO oslo_service.periodic_task [req-be0a52a9-8c32-4a42-bf8c-67db85cfd957 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.591 1190672 INFO oslo_service.periodic_task [req-e4003ba3-e3a2-4e15-a315-01e986c6452b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.616 1190678 INFO oslo_service.periodic_task [req-5c7d93fa-307e-45c0-8d0a-8645ef8dff77 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.643 1190684 INFO oslo_service.periodic_task [req-206ca5a1-ea44-4250-8ab2-1185254a8005 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.650 1190753 INFO oslo_service.periodic_task [req-92416f90-5753-4656-a4d6-e86dee407cee - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.739 1190702 INFO oslo_service.periodic_task [req-b116c226-cd94-4e58-9f1d-ab101ad21833 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.752 1190710 INFO oslo_service.periodic_task [req-84f645c9-0d2f-486d-9fe1-2514d3054c6e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.753 1190680 INFO oslo_service.periodic_task [req-7ab90a72-b6ed-40a9-a3e1-5a8d551a4d7a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.756 1190724 INFO oslo_service.periodic_task [req-280d6881-6cb6-4738-9fa8-36289daf650a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.762 1190740 INFO oslo_service.periodic_task [req-dd8794de-5752-48fe-83e2-13e7f538dd22 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.771 1190718 INFO oslo_service.periodic_task [req-d1a846aa-52ee-421a-b4fc-112134bc37a3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.783 1190706 INFO oslo_service.periodic_task [req-6b9968ca-5065-4f1e-9363-b8d922607b11 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.786 1190664 INFO oslo_service.periodic_task [req-e7875890-0384-4687-9157-cdbd1fc7615f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.805 1190658 INFO oslo_service.periodic_task [req-a94495ec-eed6-4377-9937-81caafff2588 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.832 1190746 INFO oslo_service.periodic_task [req-c2ec6a42-7789-4c02-8bf1-e1a9e53a243c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.843 1190730 INFO oslo_service.periodic_task [req-c532fb7b-52ab-477b-8004-1307d97e7151 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.853 1190652 INFO oslo_service.periodic_task [req-f7a59523-ff5d-4003-bc9d-e48aff1cb48a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.865 1190744 INFO oslo_service.periodic_task [req-a7258aec-1365-4916-aff3-48c851d7b2e1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.895 1190674 INFO oslo_service.periodic_task [req-1f6bfabf-8f14-443a-9159-b2cdcc39fdfe - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:52.955 1190716 INFO oslo_service.periodic_task [req-ffda6685-bc89-43a4-8662-ca4036f12882 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:01:53.038 1190688 INFO oslo_service.periodic_task [req-1dabcf46-1d9a-4577-8924-7e7674ac5e6e - - - - -] 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.628907s] ... ok
{55} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.711595s] ... ok
{2} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.389009s] ... ok
{6} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.443563s] ... ok
{9} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.493201s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.453071s] ... ok
{8} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.403713s] ... ok
{3} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.532104s] ... ok
{4} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.378956s] ... ok
{10} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.511923s] ... ok
{14} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [2.918856s] ... ok
{52} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.440374s] ... ok
{41} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.708119s] ... ok
{28} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [3.707575s] ... ok
{18} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [3.340747s] ... ok
{27} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.935108s] ... ok
{30} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [4.009590s] ... ok
{39} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.153493s] ... ok
{37} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [3.950807s] ... ok
{45} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [4.435281s] ... ok
{31} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [4.029735s] ... ok
{19} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [4.737679s] ... ok
{49} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [4.958129s] ... ok
{33} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [4.628983s] ... ok
{47} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [5.071550s] ... ok
{32} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.169085s] ... ok
{21} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.439008s] ... ok
{48} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [4.962020s] ... ok
{44} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.189423s] ... ok
{23} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.611307s] ... ok
{12} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [5.330350s] ... ok
{38} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.503709s] ... ok
{50} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [5.074843s] ... ok
{29} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [5.299309s] ... ok
{43} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.212299s] ... ok
{40} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.383392s] ... ok
{24} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [6.019534s] ... ok
{46} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [5.930231s] ... ok
{55} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [4.158350s] ... ok
{36} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [5.485852s] ... ok
{13} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [6.544813s] ... ok
{53} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.428300s] ... ok
{42} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [6.544569s] ... ok
{25} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [6.522602s] ... ok
{54} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [6.240090s] ... ok
{17} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [6.422114s] ... ok
{11} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [6.983215s] ... ok
{16} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [6.818115s] ... ok
{20} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [6.703932s] ... ok
{54} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [0.637619s] ... ok
{22} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [6.531349s] ... ok
{34} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [7.201037s] ... ok
{35} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [7.295388s] ... ok
{1} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [5.766515s] ... ok
{53} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.019058s] ... ok
{49} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [2.941481s] ... ok
{51} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [7.378174s] ... ok
{6} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [5.603433s] ... ok
{8} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [5.581723s] ... ok
{44} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [2.519325s] ... ok
{7} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [7.486569s] ... ok
{39} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [3.771253s] ... ok
{48} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [3.027880s] ... ok
{7} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.530343s] ... ok
{30} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [4.301609s] ... ok
{22} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{52} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [4.948808s] ... ok
{27} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [4.483678s] ... ok
{5} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [6.342437s] ... ok
{32} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.599501s] ... ok
{26} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [9.283897s] ... ok
{15} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [8.655983s] ... ok
{13} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [3.055988s] ... ok
{31} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [4.841815s] ... ok
{41} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [5.808225s] ... ok
{28} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.666932s] ... ok
{16} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [2.504505s] ... ok
{23} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [4.123249s] ... ok
{0} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.757257s] ... ok
{40} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [3.844039s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "security_group_instance_association", "security_groups" and FROM element "instances". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{19} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [5.138677s] ... ok
{45} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [5.316518s] ... ok
{17} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.105004s] ... ok
{14} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [6.702685s] ... ok
{11} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [3.031869s] ... ok
{4} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [7.006749s] ... ok
{36} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [3.807945s] ... ok
{38} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [4.372767s] ... ok
{50} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [4.382301s] ... ok
{2} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.813784s] ... ok
{9} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [7.914322s] ... ok
{47} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [5.114414s] ... ok
{43} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.542206s] ... ok
{20} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.355860s] ... ok
{3} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [8.027333s] ... ok
{37} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [6.111094s] ... ok
{42} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [3.997762s] ... ok
{18} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [6.774462s] ... ok
{33} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [5.573377s] ... ok
{10} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [7.670188s] ... ok
{24} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [4.879315s] ... ok
{25} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.318447s] ... ok
{54} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [3.823811s] ... ok
{34} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [3.726226s] ... ok
{46} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [5.113023s] ... ok
{55} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [5.193044s] ... ok
{29} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [5.814249s] ... ok
{35} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.544087s] ... ok
{51} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [4.002690s] ... ok
{21} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.626808s] ... ok
{53} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [4.784870s] ... ok
{15} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [3.036933s] ... ok
{26} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.185869s] ... ok
{52} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [4.033662s] ... ok
{12} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [7.027034s] ... ok
{51} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [1.031507s] ... ok
======
Totals
======
Ran: 116 tests in 13.2343 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 553.6232 sec.
==============
Worker Balance
==============
- Worker 0 (1 tests) => 0:00:09.757257
- Worker 1 (2 tests) => 0:00:07.397304
- Worker 2 (2 tests) => 0:00:10.205427
- Worker 3 (2 tests) => 0:00:10.560992
- Worker 4 (2 tests) => 0:00:09.388760
- Worker 5 (2 tests) => 0:00:08.797818
- Worker 6 (2 tests) => 0:00:08.049292
- Worker 7 (2 tests) => 0:00:08.019189
- Worker 8 (2 tests) => 0:00:07.987557
- Worker 9 (2 tests) => 0:00:10.410617
- Worker 10 (2 tests) => 0:00:10.183899
- Worker 11 (2 tests) => 0:00:10.016554
- Worker 12 (2 tests) => 0:00:12.359098
- Worker 13 (2 tests) => 0:00:09.602470
- Worker 14 (2 tests) => 0:00:09.622869
- Worker 15 (2 tests) => 0:00:11.695199
- Worker 16 (2 tests) => 0:00:09.324149
- Worker 17 (2 tests) => 0:00:09.528803
- Worker 18 (2 tests) => 0:00:10.116444
- Worker 19 (2 tests) => 0:00:09.877346
- Worker 20 (2 tests) => 0:00:10.061505
- Worker 21 (2 tests) => 0:00:12.068216
- Worker 22 (2 tests) => 0:00:07.797012
- Worker 23 (2 tests) => 0:00:09.735864
- Worker 24 (2 tests) => 0:00:10.900369
- Worker 25 (2 tests) => 0:00:10.842468
- Worker 26 (2 tests) => 0:00:12.471362
- Worker 27 (2 tests) => 0:00:08.419974
- Worker 28 (2 tests) => 0:00:09.376314
- Worker 29 (2 tests) => 0:00:11.114685
- Worker 30 (2 tests) => 0:00:08.312445
- Worker 31 (2 tests) => 0:00:08.873099
- Worker 32 (2 tests) => 0:00:08.770951
- Worker 33 (2 tests) => 0:00:10.203953
- Worker 34 (2 tests) => 0:00:10.928829
- Worker 35 (2 tests) => 0:00:11.841062
- Worker 36 (2 tests) => 0:00:09.294478
- Worker 37 (2 tests) => 0:00:10.063395
- Worker 38 (2 tests) => 0:00:09.878285
- Worker 39 (2 tests) => 0:00:07.925457
- Worker 40 (2 tests) => 0:00:09.228591
- Worker 41 (2 tests) => 0:00:09.518099
- Worker 42 (2 tests) => 0:00:10.544022
- Worker 43 (2 tests) => 0:00:09.755801
- Worker 44 (2 tests) => 0:00:07.710287
- Worker 45 (2 tests) => 0:00:09.753335
- Worker 46 (2 tests) => 0:00:11.044716
- Worker 47 (2 tests) => 0:00:10.187853
- Worker 48 (2 tests) => 0:00:07.991931
- Worker 49 (2 tests) => 0:00:07.900479
- Worker 50 (2 tests) => 0:00:09.458005
- Worker 51 (3 tests) => 0:00:12.414399
- Worker 52 (3 tests) => 0:00:12.425058
- Worker 53 (3 tests) => 0:00:12.235486
- Worker 54 (3 tests) => 0:00:10.703380
- Worker 55 (3 tests) => 0:00:11.067183
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.757
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False 9.284
nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate 8.656
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 8.027
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True 7.914
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.814
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False 7.670
nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate 7.487
nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False 7.378
nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False 7.295
__________________________________________________________________________ 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@1aa89f0ed17b83ace41cfc420b4b70c40c9703df#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.limit==1.5.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='2711224403'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
2022-03-16 12:02:24.577 1191400 INFO oslo_service.periodic_task [req-81dded42-2314-4c24-8e14-4de764e253f2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.594 1191396 INFO oslo_service.periodic_task [req-be8f57a0-eacd-49c8-8844-808d30d73ee0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.630 1191406 INFO oslo_service.periodic_task [req-a9f940f5-0bcb-4cea-8e36-e9e65c8fa0cf - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.635 1191408 INFO oslo_service.periodic_task [req-dfb51eb6-0175-4742-ad1d-0bd357173b11 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.646 1191390 INFO oslo_service.periodic_task [req-e0ace0a5-7686-49a3-a053-f32da60ed918 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.660 1191430 INFO oslo_service.periodic_task [req-da9f5284-f4d3-4ff1-8ec2-5f0060ea53f1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.677 1191359 INFO oslo_service.periodic_task [req-d389cd1d-00cd-46ff-88f0-61211b495c6b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.715 1191404 INFO oslo_service.periodic_task [req-ca565d5a-a444-4756-9a5a-bdd237e3f0f2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.715 1191442 INFO oslo_service.periodic_task [req-af18ff38-6695-46de-9427-534a1851a430 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.721 1191398 INFO oslo_service.periodic_task [req-0358dabc-da05-422b-9fb4-4e06816ab0f9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.731 1191438 INFO oslo_service.periodic_task [req-ef9d6fbc-ef72-487b-9215-95ff288c0605 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.736 1191448 INFO oslo_service.periodic_task [req-2c62f41e-81fc-4462-b044-7fcdbacf535e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.804 1191458 INFO oslo_service.periodic_task [req-3305aff7-f3b5-4df0-9783-4e9971923286 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.822 1191363 INFO oslo_service.periodic_task [req-e1e8774a-9a77-428c-8631-5f3288913bda - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.826 1191410 INFO oslo_service.periodic_task [req-9a7ae68c-78d9-4229-84df-e3357cab8759 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.830 1191428 INFO oslo_service.periodic_task [req-83872edd-6ae5-429a-8c97-c90253f714a7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.831 1191444 INFO oslo_service.periodic_task [req-82e24f46-e4ae-463d-98ba-6244a7405b6f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.840 1191414 INFO oslo_service.periodic_task [req-9404d265-daf3-4d14-b4a8-813c1b153535 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.847 1191420 INFO oslo_service.periodic_task [req-abb2168e-254f-4d1c-b229-4721c0f2021c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.854 1191402 INFO oslo_service.periodic_task [req-c7558719-a9c3-4c57-8e96-d31a3a6b1ac5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.848 1191460 INFO oslo_service.periodic_task [req-6eed2266-5f41-44a1-89ef-d7f42cbfe0fa - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.850 1191482 INFO oslo_service.periodic_task [req-5bd578bd-9090-4bab-9488-d00015683da6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.858 1191434 INFO oslo_service.periodic_task [req-c64b410c-ab79-469d-91f1-9e5ca34104c6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.867 1191486 INFO oslo_service.periodic_task [req-d06f20d2-17a0-49fd-a0ff-b04812bf81cf - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.872 1191424 INFO oslo_service.periodic_task [req-910941c1-6d10-4f70-84e7-cc1ca2e836cb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.869 1191388 INFO oslo_service.periodic_task [req-e898d0ab-ccbc-4edf-9663-d55ec96d7522 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.861 1191412 INFO oslo_service.periodic_task [req-e9bafe28-4e80-4a48-9c18-0b32e61c7d43 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.895 1191416 INFO oslo_service.periodic_task [req-534b4339-8fcc-48e5-a83e-a959dbf966b9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.903 1191488 INFO oslo_service.periodic_task [req-5d7bbe92-4f93-4868-a3b8-9ad9e95cbd6c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.912 1191446 INFO oslo_service.periodic_task [req-5539bad8-41a6-4d03-85b7-5ca1579cfb4b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.934 1191426 INFO oslo_service.periodic_task [req-d7d06861-86d8-41e3-90a7-e1b2b5713fde - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.941 1191464 INFO oslo_service.periodic_task [req-39e19a33-e2f1-4591-91bd-a56e64dc64ee - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.952 1191432 INFO oslo_service.periodic_task [req-e30365a5-e201-474c-b126-27f897cd9e7d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.957 1191436 INFO oslo_service.periodic_task [req-0d2b64ca-5ae6-4611-bf01-e38cb5d959ac - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.971 1191474 INFO oslo_service.periodic_task [req-6d9ce29e-79fc-48ab-9f3e-60333215026a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.973 1191418 INFO oslo_service.periodic_task [req-b70af756-3b7c-4d53-b18e-55a0462853cc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.980 1191392 INFO oslo_service.periodic_task [req-f2fb70ef-b7d4-48d8-b06c-32088ddd2664 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:24.988 1191470 INFO oslo_service.periodic_task [req-52efd5ba-54d6-494f-8cf6-3819e8f62947 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:25.015 1191422 INFO oslo_service.periodic_task [req-8dcb2e92-6d5f-4d88-82a0-ca0a10f9345c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:25.023 1191480 INFO oslo_service.periodic_task [req-97182130-193c-4466-8d47-1baeb6190255 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:25.026 1191478 INFO oslo_service.periodic_task [req-e2ce531b-5756-425b-a949-39312f1f03e2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:25.064 1191456 INFO oslo_service.periodic_task [req-17fde0a8-922d-45c0-ba35-e6c4f4c78242 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:25.094 1191466 INFO oslo_service.periodic_task [req-6074f785-898d-401d-9ba1-23986b76a15c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:25.110 1191472 INFO oslo_service.periodic_task [req-224f743f-5ebd-490a-94c4-6aaee3280d3e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:25.114 1191492 INFO oslo_service.periodic_task [req-f7a9d004-67b5-44d0-ad58-25fce51ff0ec - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:25.116 1191491 INFO oslo_service.periodic_task [req-63083211-2cea-4adf-b1cc-3f8cb320e79c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:25.152 1191394 INFO oslo_service.periodic_task [req-d6cdda30-ae4e-4488-bbe7-1b93cf24a5a6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:25.174 1191468 INFO oslo_service.periodic_task [req-5ec629f4-4497-46e3-b1ae-c77d72a0fcbc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:25.177 1191462 INFO oslo_service.periodic_task [req-aab73ed9-c9cc-4476-9360-89613841e528 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:25.178 1191440 INFO oslo_service.periodic_task [req-a6f345ec-e151-4044-ad94-d99596da5af8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:25.199 1191452 INFO oslo_service.periodic_task [req-7cea8e64-bd39-4a1d-880c-fcabe1536da8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:25.243 1191454 INFO oslo_service.periodic_task [req-a73d655c-e834-4273-bdd2-d839af9fd4c6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:25.251 1191476 INFO oslo_service.periodic_task [req-842b96f2-1ed1-4448-8e7a-aed08d91ad12 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:25.479 1191450 INFO oslo_service.periodic_task [req-7827481f-4fac-4272-8940-97da08c62e4a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:25.555 1191484 INFO oslo_service.periodic_task [req-ed1b2686-5730-4528-8a83-f4b5554b2b59 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:25.630 1191495 INFO oslo_service.periodic_task [req-01ce142c-b32a-444e-98eb-5979fb1172b9 - - - - -] 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.625263s] ... ok
{2} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.696325s] ... ok
{8} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.381506s] ... ok
{3} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.423248s] ... ok
{12} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.455148s] ... ok
{10} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.419840s] ... ok
{6} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.553026s] ... ok
{7} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.464503s] ... ok
{4} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.489389s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.375678s] ... ok
{12} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.933612s] ... ok
{37} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.893971s] ... ok
{32} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.965956s] ... ok
{26} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.812428s] ... ok
{40} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.162743s] ... ok
{11} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [4.494931s] ... ok
{15} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [4.434322s] ... ok
{18} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [4.488243s] ... ok
{9} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [4.547628s] ... ok
{33} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [3.982942s] ... ok
{51} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [4.750826s] ... ok
{52} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [4.730646s] ... ok
{50} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [4.164191s] ... ok
{46} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [4.493176s] ... ok
{45} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.129932s] ... ok
{47} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.227139s] ... ok
{54} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.177603s] ... ok
{53} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [5.188372s] ... ok
{11} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [1.254584s] ... ok
{38} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.617231s] ... ok
{42} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [5.308509s] ... ok
{41} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.444734s] ... ok
{29} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [5.867325s] ... ok
{31} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [5.665922s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "security_group_instance_association", "security_groups" and FROM element "instances". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{44} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [5.477081s] ... ok
{55} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [4.990934s] ... ok
{48} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.638787s] ... ok
{34} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.585849s] ... ok
{28} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.707834s] ... ok
{43} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [6.239648s] ... ok
{23} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.589712s] ... ok
{13} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [6.460098s] ... ok
{22} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [6.566415s] ... ok
{49} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [6.585145s] ... ok
{39} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [6.316330s] ... ok
{14} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [6.700886s] ... ok
{24} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [6.641814s] ... ok
{20} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [6.752865s] ... ok
{38} 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_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [6.816038s] ... ok
{8} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [5.133296s] ... ok
{21} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [7.314009s] ... ok
{10} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [5.179417s] ... ok
{40} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [3.248971s] ... ok
{36} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [7.347026s] ... ok
{19} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [7.397177s] ... ok
{13} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [1.173573s] ... ok
{7} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [5.268064s] ... ok
{30} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [7.680780s] ... ok
{35} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [7.323401s] ... ok
{27} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [7.854621s] ... ok
{26} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [3.911354s] ... ok
{23} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [1.548778s] ... ok
{25} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [8.317217s] ... ok
{17} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [8.463747s] ... ok
{21} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [1.289351s] ... ok
{1} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.343949s] ... ok
{2} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [7.344583s] ... ok
{14} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [2.475902s] ... ok
{47} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [3.849631s] ... ok
{41} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [3.674346s] ... ok
{52} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [4.661055s] ... ok
{3} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [7.264628s] ... ok
{37} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [5.638363s] ... ok
{6} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [7.234870s] ... ok
{29} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [3.826140s] ... ok
{22} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.061941s] ... ok
{36} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [2.114277s] ... ok
{48} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [3.871380s] ... ok
{4} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [7.105575s] ... ok
{9} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [5.245538s] ... ok
{39} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [3.277838s] ... ok
{53} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [4.484080s] ... ok
{46} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [5.094572s] ... ok
{36} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.342099s] ... ok
{25} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [1.744519s] ... ok
{0} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [10.286863s] ... ok
{44} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [4.371611s] ... ok
{45} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [4.884661s] ... ok
{16} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [3.326357s] ... ok
{34} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [4.255596s] ... ok
{24} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.506087s] ... ok
{51} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [5.522338s] ... ok
{54} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [4.922543s] ... ok
{5} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.714970s] ... ok
{42} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [4.788245s] ... ok
{12} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [7.249437s] ... ok
{41} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.066083s] ... ok
{28} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [4.445921s] ... ok
{20} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.711295s] ... ok
{33} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.953466s] ... ok
{32} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [6.807830s] ... ok
{50} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [5.856539s] ... ok
{19} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.229781s] ... ok
{15} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [6.438528s] ... ok
{49} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.319017s] ... ok
{31} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [5.258715s] ... ok
{55} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [5.326767s] ... ok
{30} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [3.678792s] ... ok
{18} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.929840s] ... ok
{38} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [4.737267s] ... ok
{17} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [2.973431s] ... ok
{43} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [5.264310s] ... ok
{27} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [4.043269s] ... ok
{35} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [4.506357s] ... ok
{11} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [7.029142s] ... ok
======
Totals
======
Ran: 116 tests in 12.8349 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 554.3634 sec.
==============
Worker Balance
==============
- Worker 0 (1 tests) => 0:00:10.286863
- Worker 1 (2 tests) => 0:00:08.971531
- Worker 2 (2 tests) => 0:00:09.043264
- Worker 3 (2 tests) => 0:00:09.689906
- Worker 4 (2 tests) => 0:00:09.597722
- Worker 5 (2 tests) => 0:00:10.092454
- Worker 6 (2 tests) => 0:00:09.790489
- Worker 7 (2 tests) => 0:00:07.734632
- Worker 8 (2 tests) => 0:00:07.517718
- Worker 9 (2 tests) => 0:00:09.794585
- Worker 10 (2 tests) => 0:00:07.601316
- Worker 11 (3 tests) => 0:00:12.780534
- Worker 12 (3 tests) => 0:00:10.641817
- Worker 13 (2 tests) => 0:00:07.635151
- Worker 14 (2 tests) => 0:00:09.178313
- Worker 15 (2 tests) => 0:00:10.873883
- Worker 16 (2 tests) => 0:00:10.144419
- Worker 17 (2 tests) => 0:00:11.439013
- Worker 18 (2 tests) => 0:00:11.419202
- Worker 19 (2 tests) => 0:00:10.628910
- Worker 20 (2 tests) => 0:00:10.465560
- Worker 21 (2 tests) => 0:00:08.605069
- Worker 22 (2 tests) => 0:00:09.630097
- Worker 23 (2 tests) => 0:00:08.139331
- Worker 24 (2 tests) => 0:00:10.149383
- Worker 25 (2 tests) => 0:00:10.063291
- Worker 26 (2 tests) => 0:00:07.725650
- Worker 27 (2 tests) => 0:00:11.899628
- Worker 28 (2 tests) => 0:00:10.155205
- Worker 29 (2 tests) => 0:00:09.694920
- Worker 30 (2 tests) => 0:00:11.361302
- Worker 31 (2 tests) => 0:00:10.925808
- Worker 32 (2 tests) => 0:00:10.775081
- Worker 33 (2 tests) => 0:00:09.938542
- Worker 34 (2 tests) => 0:00:09.843540
- Worker 35 (2 tests) => 0:00:11.831148
- Worker 36 (3 tests) => 0:00:09.805788
- Worker 37 (2 tests) => 0:00:09.534235
- Worker 38 (3 tests) => 0:00:11.519505
- Worker 39 (2 tests) => 0:00:09.595499
- Worker 40 (2 tests) => 0:00:07.412957
- Worker 41 (3 tests) => 0:00:10.187924
- Worker 42 (2 tests) => 0:00:10.097451
- Worker 43 (2 tests) => 0:00:11.505141
- Worker 44 (2 tests) => 0:00:09.849789
- Worker 45 (2 tests) => 0:00:10.017652
- Worker 46 (2 tests) => 0:00:09.589319
- Worker 47 (2 tests) => 0:00:09.078174
- Worker 48 (2 tests) => 0:00:09.512710
- Worker 49 (2 tests) => 0:00:10.906078
- Worker 50 (2 tests) => 0:00:10.021574
- Worker 51 (2 tests) => 0:00:10.274377
- Worker 52 (2 tests) => 0:00:09.393319
- Worker 53 (2 tests) => 0:00:09.674261
- Worker 54 (2 tests) => 0:00:10.101302
- Worker 55 (2 tests) => 0:00:10.319346
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.287
nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate 8.464
nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change 8.317
nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules 7.855
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.715
nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure 7.681
nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change 7.397
nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists 7.347
nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate 7.345
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False 7.344
__________________________________________________________________________ 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@1aa89f0ed17b83ace41cfc420b4b70c40c9703df#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.limit==1.5.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='3594650303'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
2022-03-16 12:02:57.166 1191990 INFO oslo_service.periodic_task [req-8c397833-e04d-40ca-9fe3-caa126070ef6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.204 1192053 INFO oslo_service.periodic_task [req-08a1353d-8695-448c-b723-be20a221b3a8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.209 1191996 INFO oslo_service.periodic_task [req-d173d205-3295-4a93-a076-06914d8f3d27 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.241 1192009 INFO oslo_service.periodic_task [req-d38019cf-ae18-4136-81d9-5e2db00f9c3e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.266 1192027 INFO oslo_service.periodic_task [req-df9689e2-4a2e-48e2-a37d-036b797ca281 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.311 1191992 INFO oslo_service.periodic_task [req-e39ea0a8-4ad4-4fe5-88ed-63a9560bf597 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.317 1192032 INFO oslo_service.periodic_task [req-8b513055-9801-462f-91ca-cb39885eb986 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.376 1192076 INFO oslo_service.periodic_task [req-fe2d28b3-3e68-4497-8f6b-0ea10fc804c7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.448 1192143 INFO oslo_service.periodic_task [req-6d46e0ee-352d-4b87-884f-2cc9e151d6a1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.471 1191994 INFO oslo_service.periodic_task [req-8b356da2-91b6-42d3-9d4a-1400f3c40b4d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.471 1192109 INFO oslo_service.periodic_task [req-40cbcc31-6ce2-4c4c-823d-a6d9c5271fe3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.477 1192139 INFO oslo_service.periodic_task [req-06d11716-7df4-4012-b2aa-dc236e03cf14 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.478 1192135 INFO oslo_service.periodic_task [req-e722b38c-1548-47a3-84f5-7a293b695f00 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.482 1192121 INFO oslo_service.periodic_task [req-57cf117f-c2d6-44c3-9240-640b0cb6e491 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.488 1192129 INFO oslo_service.periodic_task [req-a4fd52e3-279d-4f0a-8c2c-68710b3f87c2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.495 1192131 INFO oslo_service.periodic_task [req-6409dda9-4078-4f1c-84b4-19f1741cc2cf - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.502 1192111 INFO oslo_service.periodic_task [req-89eba93b-0962-4c1d-bbd4-e8910cfe23b6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.508 1192127 INFO oslo_service.periodic_task [req-78a803b9-e9c8-4044-9bf2-eed0d5de929b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.510 1192099 INFO oslo_service.periodic_task [req-091c1e5e-6ac8-4568-949d-3f176cd25147 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.512 1192137 INFO oslo_service.periodic_task [req-017480bc-b737-4b08-89cb-f8cfc3ae943c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.525 1192117 INFO oslo_service.periodic_task [req-95605097-710b-4c7b-861c-5aa9113ce3ac - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.528 1192107 INFO oslo_service.periodic_task [req-37cbf069-d60f-456f-8b7c-5aec832997f2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.529 1192119 INFO oslo_service.periodic_task [req-d9b6b9aa-8286-424c-a1b2-9e3c9bf12741 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.542 1192113 INFO oslo_service.periodic_task [req-1e0cad7f-02c6-4dde-8350-ea66274f9ffe - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.545 1192133 INFO oslo_service.periodic_task [req-82c07dc3-281e-40ec-86a9-0980c4c1f874 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.546 1192161 INFO oslo_service.periodic_task [req-42b47e8b-2716-490e-8d2e-44d1532c8973 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.565 1192103 INFO oslo_service.periodic_task [req-1cf2c88f-481f-4949-b4c7-13a708292c3b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.572 1192165 INFO oslo_service.periodic_task [req-1902c257-b436-479b-93d5-1ca6f4c962f3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.573 1192147 INFO oslo_service.periodic_task [req-81de8bcd-523c-4ef2-bcce-df03a36546f2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.579 1192169 INFO oslo_service.periodic_task [req-48c5a555-5ec9-421d-9469-f79408b33f36 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.585 1192063 INFO oslo_service.periodic_task [req-f0fb1dee-b6ff-4aa6-b28e-6156c2f02178 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.587 1192163 INFO oslo_service.periodic_task [req-aad87f09-ba16-42e0-9f8c-1dd2b086ca41 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.595 1192149 INFO oslo_service.periodic_task [req-76938488-cbf5-4e58-9ada-098f64c707ca - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.595 1192087 INFO oslo_service.periodic_task [req-6c54d87f-01e7-4d40-ac06-ddd00364599b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.597 1192153 INFO oslo_service.periodic_task [req-826094d0-8c48-48db-9efb-6eb3cd2d4593 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.612 1192115 INFO oslo_service.periodic_task [req-2e665eba-3a8d-451f-af68-3963590415b2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.611 1192167 INFO oslo_service.periodic_task [req-365b6a0e-ae60-4d6a-a2e0-eadf50e8e605 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.617 1192155 INFO oslo_service.periodic_task [req-69cf2d80-2868-4f75-b966-6421a68839da - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.623 1192159 INFO oslo_service.periodic_task [req-4edae9e1-27cc-4774-a41d-ea8591549de3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.633 1192101 INFO oslo_service.periodic_task [req-c5bea431-ff01-4533-bf4b-3f0b4c4a0b42 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.620 1192175 INFO oslo_service.periodic_task [req-22827dec-45fd-4ddf-9f6b-601960c3ca2e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.640 1192145 INFO oslo_service.periodic_task [req-3b71bc0c-c58d-423a-8561-cc02835fff97 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.653 1192125 INFO oslo_service.periodic_task [req-269fc665-c5e0-4286-8d9c-974c0b0fedb5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.674 1192123 INFO oslo_service.periodic_task [req-5174912c-7f6e-4695-914b-c552b5cc65a2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.681 1192096 INFO oslo_service.periodic_task [req-88b80d82-a3dd-4470-9a5f-19738490e0e2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.734 1192157 INFO oslo_service.periodic_task [req-df42ebd0-e0bf-4d4b-a1f5-ca67beb7a179 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.736 1192105 INFO oslo_service.periodic_task [req-1135706f-f031-4d66-8a48-0a02327af73c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.764 1192171 INFO oslo_service.periodic_task [req-156d1e96-d02a-40cf-adfe-639fd63814af - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.772 1192141 INFO oslo_service.periodic_task [req-5aca1605-776f-4af2-a10f-6095f6d704ff - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.789 1192177 INFO oslo_service.periodic_task [req-667d03c1-d993-49f5-931f-32ae098d57b9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.798 1192151 INFO oslo_service.periodic_task [req-f944bb1e-a698-4aa9-8eed-b374b1be3902 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.825 1192173 INFO oslo_service.periodic_task [req-1e5f0698-66eb-4ff9-9abb-17a2a80a9369 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.847 1192181 INFO oslo_service.periodic_task [req-c5374fb3-6798-4a01-a3a4-0585351ef932 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.867 1192180 INFO oslo_service.periodic_task [req-ecf543e1-b7b6-496e-8133-217373db1532 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.974 1192186 INFO oslo_service.periodic_task [req-7e9944e5-4a64-49cc-bade-05659390089b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:02:57.985 1192183 INFO oslo_service.periodic_task [req-016c563e-e78b-4d7f-9000-1d7fa42b506d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
{5} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.685263s] ... ok
{9} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.390070s] ... ok
{8} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.386259s] ... ok
{12} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.503147s] ... ok
{13} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.388554s] ... ok
{16} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.509372s] ... ok
{11} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.439608s] ... ok
{10} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.520577s] ... ok
{6} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [2.924277s] ... ok
{15} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.504170s] ... ok
{2} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [3.179435s] ... ok
{4} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{3} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.515467s] ... ok
{5} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.921129s] ... ok
{4} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [0.253113s] ... ok
{27} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.719713s] ... ok
{31} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.921212s] ... ok
{34} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [4.209630s] ... ok
{33} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.935465s] ... ok
{36} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.146844s] ... ok
{14} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [4.363377s] ... ok
{45} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [4.399680s] ... ok
{17} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [5.067727s] ... ok
{52} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [4.812963s] ... ok
{49} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [5.088400s] ... ok
{20} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.391108s] ... ok
{40} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [5.380376s] ... ok
{24} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [5.340299s] ... ok
{55} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [5.043286s] ... ok
{53} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.199614s] ... ok
{37} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.503884s] ... ok
{48} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.342420s] ... ok
{41} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.384229s] ... ok
{35} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.588993s] ... ok
{51} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.505578s] ... ok
{38} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.571769s] ... ok
{42} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [6.095291s] ... ok
{29} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [6.220443s] ... ok
{30} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [6.356358s] ... ok
{22} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [6.379676s] ... ok
{23} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.490904s] ... ok
{43} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [6.499729s] ... ok
{28} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [6.555460s] ... ok
{25} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [6.623341s] ... ok
{21} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [6.765092s] ... ok
{33} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [2.592701s] ... ok
{18} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [6.915182s] ... ok
{50} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [6.908684s] ... ok
{26} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [7.083351s] ... ok
{47} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [7.060534s] ... ok
{44} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [7.079153s] ... ok
{54} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [6.680104s] ... ok
{32} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [7.237905s] ... ok
{7} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [7.558066s] ... ok
{46} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [7.292930s] ... ok
{11} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [4.898821s] ... ok
{39} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [7.490407s] ... ok
{1} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [8.148376s] ... ok
{19} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [7.974747s] ... ok
{41} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [2.366454s] ... ok
{10} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [5.545968s] ... ok
{6} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [5.451702s] ... ok
{34} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [4.142008s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "security_group_instance_association", "security_groups" and FROM element "instances". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{31} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [4.370204s] ... ok
{48} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [2.731414s] ... ok
{37} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [2.762411s] ... ok
{3} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [5.699834s] ... ok
{8} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [6.673731s] ... ok
{1} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [1.237772s] ... ok
{13} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [6.728140s] ... ok
{0} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.618626s] ... ok
{9} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.083091s] ... ok
{22} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [2.967976s] ... ok
{7} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [2.250208s] ... ok
{45} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [5.037719s] ... ok
{16} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [7.036900s] ... ok
{5} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [6.213130s] ... ok
{36} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [5.379925s] ... ok
{53} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [4.122372s] ... ok
{2} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [6.582281s] ... ok
{49} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [4.400606s] ... ok
{23} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.350409s] ... ok
{50} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [2.805999s] ... ok
{7} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.394189s] ... ok
{12} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [7.395863s] ... ok
{44} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [2.785371s] ... ok
{21} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [3.252454s] ... ok
{6} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [1.931118s] ... ok
{40} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [4.630607s] ... ok
{28} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [3.629239s] ... ok
{3} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [1.367977s] ... ok
{43} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [3.755492s] ... ok
{15} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [7.649116s] ... ok
{38} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [4.595445s] ... ok
{18} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.565748s] ... ok
{52} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [5.305773s] ... ok
{51} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [4.714818s] ... ok
{46} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [3.121607s] ... ok
{29} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.269429s] ... ok
{35} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [4.905384s] ... ok
{24} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [5.190177s] ... ok
{20} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [5.229806s] ... ok
{27} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [7.069982s] ... ok
{26} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.788358s] ... ok
{55} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [5.497558s] ... ok
{4} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.639365s] ... ok
{32} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [3.857573s] ... ok
{19} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.401973s] ... ok
{39} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.049348s] ... ok
{42} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [5.454532s] ... ok
{25} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [4.957634s] ... ok
{17} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.889562s] ... ok
{30} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.767676s] ... ok
{47} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [5.036576s] ... ok
{54} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [5.102710s] ... ok
{14} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [8.049312s] ... ok
======
Totals
======
Ran: 116 tests in 12.8162 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 561.1589 sec.
==============
Worker Balance
==============
- Worker 0 (1 tests) => 0:00:09.618626
- Worker 1 (2 tests) => 0:00:09.387868
- Worker 2 (2 tests) => 0:00:09.762654
- Worker 3 (3 tests) => 0:00:10.586255
- Worker 4 (3 tests) => 0:00:11.299297
- Worker 5 (3 tests) => 0:00:09.823287
- Worker 6 (3 tests) => 0:00:10.309420
- Worker 7 (3 tests) => 0:00:10.205081
- Worker 8 (2 tests) => 0:00:09.062436
- Worker 9 (2 tests) => 0:00:09.475972
- Worker 10 (2 tests) => 0:00:08.069128
- Worker 11 (2 tests) => 0:00:07.340467
- Worker 12 (2 tests) => 0:00:09.901097
- Worker 13 (2 tests) => 0:00:09.119777
- Worker 14 (2 tests) => 0:00:12.413792
- Worker 15 (2 tests) => 0:00:10.156188
- Worker 16 (2 tests) => 0:00:09.549530
- Worker 17 (2 tests) => 0:00:11.958286
- Worker 18 (2 tests) => 0:00:10.483540
- Worker 19 (2 tests) => 0:00:11.381148
- Worker 20 (2 tests) => 0:00:10.622505
- Worker 21 (2 tests) => 0:00:10.019496
- Worker 22 (2 tests) => 0:00:09.348606
- Worker 23 (2 tests) => 0:00:09.843258
- Worker 24 (2 tests) => 0:00:10.531544
- Worker 25 (2 tests) => 0:00:11.583342
- Worker 26 (2 tests) => 0:00:10.873616
- Worker 27 (2 tests) => 0:00:10.791579
- Worker 28 (2 tests) => 0:00:10.185553
- Worker 29 (2 tests) => 0:00:10.491908
- Worker 30 (2 tests) => 0:00:12.124986
- Worker 31 (2 tests) => 0:00:08.292851
- Worker 32 (2 tests) => 0:00:11.097677
- Worker 33 (2 tests) => 0:00:06.528736
- Worker 34 (2 tests) => 0:00:08.352961
- Worker 35 (2 tests) => 0:00:10.497117
- Worker 36 (2 tests) => 0:00:09.527890
- Worker 37 (2 tests) => 0:00:08.267591
- Worker 38 (2 tests) => 0:00:10.170246
- Worker 39 (2 tests) => 0:00:11.541098
- Worker 40 (2 tests) => 0:00:10.011668
- Worker 41 (2 tests) => 0:00:07.751710
- Worker 42 (2 tests) => 0:00:11.551454
- Worker 43 (2 tests) => 0:00:10.256459
- Worker 44 (2 tests) => 0:00:09.866209
- Worker 45 (2 tests) => 0:00:09.438927
- Worker 46 (2 tests) => 0:00:10.416582
- Worker 47 (2 tests) => 0:00:12.098201
- Worker 48 (2 tests) => 0:00:08.075279
- Worker 49 (2 tests) => 0:00:09.490474
- Worker 50 (2 tests) => 0:00:09.716514
- Worker 51 (2 tests) => 0:00:10.221622
- Worker 52 (2 tests) => 0:00:10.120271
- Worker 53 (2 tests) => 0:00:09.323633
- Worker 54 (2 tests) => 0:00:11.784791
- Worker 55 (2 tests) => 0:00:10.542676
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.619
nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate 8.148
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False 8.049
nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute 7.975
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True 7.649
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.639
nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists 7.558
nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True 7.490
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 7.396
nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail 7.293
__________________________________________________________________________ summary ___________________________________________________________________________
functional-py39: commands succeeded
congratulations :)
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@1aa89f0ed17b83ace41cfc420b4b70c40c9703df#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.limit==1.5.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='349274625'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
2022-03-16 12:03:29.827 1192802 INFO oslo_service.periodic_task [req-77acdfbc-d1db-4604-b951-140bd02a65a8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:29.984 1192826 INFO oslo_service.periodic_task [req-b69ed1d1-5084-48ca-a9a7-5eb2e709863b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.023 1192830 INFO oslo_service.periodic_task [req-79429a9f-c505-41af-8e36-8037f59eb242 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.102 1192820 INFO oslo_service.periodic_task [req-a9146996-dad3-49d3-8035-c366da1ec02e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.153 1192832 INFO oslo_service.periodic_task [req-eaa42638-758f-4f26-83af-c3fc4f20e1ee - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.172 1192828 INFO oslo_service.periodic_task [req-5d20e174-c428-4923-99d0-ef5e7faad555 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.200 1192812 INFO oslo_service.periodic_task [req-7fc2db66-a9d5-45eb-b4e1-b079bc705aa6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.207 1192810 INFO oslo_service.periodic_task [req-682c0674-ac30-49ea-8b6e-239da76f174b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.217 1192834 INFO oslo_service.periodic_task [req-64155fe9-7559-40c1-a4a8-044a1335e939 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.264 1192890 INFO oslo_service.periodic_task [req-af8910a5-a8c7-4fff-b301-cf11411f5dbe - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.277 1192814 INFO oslo_service.periodic_task [req-270539e6-300a-4596-801c-b113f7bca151 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.278 1192848 INFO oslo_service.periodic_task [req-3cfa5040-c8a4-40db-aef7-865693e15be7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.282 1192818 INFO oslo_service.periodic_task [req-c1c51854-6ee8-437e-a8a9-13c192fd55ee - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.285 1192824 INFO oslo_service.periodic_task [req-6bc43d47-cb38-4cf4-ab52-34fc8c4d4eca - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.301 1192902 INFO oslo_service.periodic_task [req-cebe70ce-7f3d-4358-8b43-3e977bdae691 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.306 1192842 INFO oslo_service.periodic_task [req-b3e91c4b-e44b-433f-ad20-c01c48d5d2e8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.324 1192816 INFO oslo_service.periodic_task [req-6a3e5c11-91e5-46a4-8118-7838bc3d4b4b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.344 1192852 INFO oslo_service.periodic_task [req-0b8028fe-800a-461c-93be-2e57645a66f7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.358 1192836 INFO oslo_service.periodic_task [req-20b81dc3-be02-40c3-8986-e3fbbee18862 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.361 1192808 INFO oslo_service.periodic_task [req-bfab516c-7f18-4e7b-89a2-25b756a31219 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.373 1192872 INFO oslo_service.periodic_task [req-72ce9a1e-5565-4e37-9eb9-4bb24e8b8e0b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.385 1192838 INFO oslo_service.periodic_task [req-02aa6cd5-cf87-4c99-ac0b-16344c9ed646 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.389 1192846 INFO oslo_service.periodic_task [req-8c7f1f05-0b3f-4623-a922-3e41a20f7063 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.394 1192806 INFO oslo_service.periodic_task [req-35dee283-ce54-4533-ae71-cf67eaa7e5d2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.406 1192884 INFO oslo_service.periodic_task [req-68f55d25-dc77-46e6-b62a-3d945a0ae964 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.423 1192854 INFO oslo_service.periodic_task [req-6a2c63bb-8194-4125-a093-7b00bb8d8c8e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.422 1192892 INFO oslo_service.periodic_task [req-e80128fc-12db-483e-b54d-ca439734097b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.437 1192862 INFO oslo_service.periodic_task [req-1b6df2dc-9f0f-46a5-ab52-d4170e7362cb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.445 1192886 INFO oslo_service.periodic_task [req-2de5f809-d52d-4ba2-a54a-dfe8d4099135 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.459 1192844 INFO oslo_service.periodic_task [req-6ff58bb5-7e7e-402c-806e-4a9f225fd758 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.465 1192904 INFO oslo_service.periodic_task [req-af6cd960-21e9-4c30-bfb9-f3bc36172b32 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.464 1192874 INFO oslo_service.periodic_task [req-d39fbe60-dc49-4b65-8a7c-bb2455ce588c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.466 1192900 INFO oslo_service.periodic_task [req-2186528e-09f6-4ac8-bf67-8347280071f8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.480 1192894 INFO oslo_service.periodic_task [req-cef7ee0b-31fd-46b8-a666-ab99c6ab292c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.479 1192906 INFO oslo_service.periodic_task [req-59589411-8f83-4a7c-9160-052bc3108ef0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.486 1192858 INFO oslo_service.periodic_task [req-81ebcf3d-d06a-4f8d-bb8d-8e749f5dbe0c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.483 1192910 INFO oslo_service.periodic_task [req-2151464d-9c0d-407b-ae8e-b82339de90be - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.489 1192908 INFO oslo_service.periodic_task [req-8fa6284e-07df-493c-adf0-10e2d8a1920b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.502 1192864 INFO oslo_service.periodic_task [req-dbf99529-8f1f-4898-a08b-dce8baa70a5b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.487 1192840 INFO oslo_service.periodic_task [req-043a138a-ba06-4181-afd3-053832322882 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.521 1192880 INFO oslo_service.periodic_task [req-171ce5c5-6f56-4bff-93a0-5cd73dbe347a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.522 1192860 INFO oslo_service.periodic_task [req-a3985196-7909-424c-98d3-52cfbeeab2e3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.545 1192822 INFO oslo_service.periodic_task [req-ad0d563e-507e-4b8b-90cd-2508a8713110 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.546 1192913 INFO oslo_service.periodic_task [req-37d157dc-3ac2-4554-b906-b49e2b754708 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.542 1192870 INFO oslo_service.periodic_task [req-ab24b618-c0d9-4ae0-a227-3c705ea8b780 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.556 1192876 INFO oslo_service.periodic_task [req-b7bf6de2-5e9f-4e54-b280-8f0901c2aff6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.570 1192888 INFO oslo_service.periodic_task [req-d2303577-975e-462d-a4d3-92f7e5446bee - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.572 1192882 INFO oslo_service.periodic_task [req-d8bae840-5aea-4559-8e99-31863148b7a7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.589 1192868 INFO oslo_service.periodic_task [req-63ea3b91-da00-4343-b09f-db88c1925202 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.599 1192804 INFO oslo_service.periodic_task [req-39d7d22a-d601-42ec-9b68-5f820b22c47d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.623 1192866 INFO oslo_service.periodic_task [req-7c40740d-16ce-414c-9d69-d9f2a8e92af1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.631 1192850 INFO oslo_service.periodic_task [req-641d3447-40b8-45da-b722-ce49e0c24d05 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.635 1192896 INFO oslo_service.periodic_task [req-a86db3f1-1e88-4436-be7d-b8011aac2659 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.671 1192878 INFO oslo_service.periodic_task [req-03365e82-e500-4825-9f67-561c452f2c12 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.698 1192898 INFO oslo_service.periodic_task [req-f2c4bda8-5bcb-4cfe-9bb5-ba53c4126730 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:03:30.785 1192856 INFO oslo_service.periodic_task [req-ac242e25-5cee-495e-8060-099cc8582c56 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
{12} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.448188s] ... ok
{9} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.453530s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.390697s] ... ok
{6} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.404784s] ... ok
{8} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.456589s] ... ok
{11} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.465873s] ... ok
{7} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.460485s] ... ok
{10} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.423613s] ... ok
{11} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [0.506929s] ... ok
{25} 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.204435s] ... ok
{2} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [3.836015s] ... ok
{29} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.756656s] ... ok
{39} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [3.970214s] ... ok
{34} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [4.026327s] ... ok
{33} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [4.006284s] ... ok
{16} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [4.410261s] ... ok
{4} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [4.429713s] ... ok
{15} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [4.593963s] ... ok
{38} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.224204s] ... ok
{14} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [4.912471s] ... ok
{38} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [0.284061s] ... ok
{17} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [5.152961s] ... ok
{45} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.114091s] ... ok
{54} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [5.042576s] ... ok
{36} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.122882s] ... ok
{55} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [5.046992s] ... ok
{44} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.424723s] ... ok
{52} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.256401s] ... ok
{30} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [5.344515s] ... ok
{19} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [5.284248s] ... ok
{46} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [5.489574s] ... ok
{48} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.304911s] ... ok
{37} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.585765s] ... ok
{42} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [6.142268s] ... ok
{40} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [6.043464s] ... ok
{31} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [6.174367s] ... ok
{32} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [6.106946s] ... ok
{49} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [6.297537s] ... ok
{22} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [6.426999s] ... ok
{26} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [6.448209s] ... ok
{28} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.436583s] ... ok
{41} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [6.625717s] ... ok
{13} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [6.999268s] ... ok
{24} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [6.552720s] ... ok
{51} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [6.843792s] ... ok
{20} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [7.029526s] ... ok
{27} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [6.553900s] ... ok
{50} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [7.120397s] ... ok
{53} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [6.977111s] ... ok
{18} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [7.279584s] ... ok
{43} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [7.432697s] ... ok
{7} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [5.276606s] ... ok
{39} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [3.644549s] ... ok
{9} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [5.631651s] ... ok
{10} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [5.235142s] ... ok
{47} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [7.605251s] ... ok
{6} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [5.607100s] ... ok
{11} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [5.043065s] ... ok
{35} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [8.056902s] ... ok
{3} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [8.137292s] ... ok
{33} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [3.955144s] ... ok
{18} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [0.920072s] ... ok
{26} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [1.712790s] ... ok
{48} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [2.581101s] ... ok
{1} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [8.009764s] ... ok
{23} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [8.414884s] ... ok
{29} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [4.553479s] ... ok
{55} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [3.259266s] ... ok
{22} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [2.746964s] ... ok
{0} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.792126s] ... ok
{41} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [2.901372s] ... ok
{45} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [4.400713s] ... ok
{20} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [2.756873s] ... ok
{15} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [5.391687s] ... ok
{49} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [3.396245s] ... ok
{1} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.599436s] ... ok
{31} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.527079s] ... ok
{8} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [7.487426s] ... ok
{30} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.471157s] ... ok
{37} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [4.097987s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "security_group_instance_association", "security_groups" and FROM element "instances". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{46} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [4.289392s] ... ok
{12} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.869841s] ... ok
{24} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.120197s] ... ok
{44} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [4.671032s] ... ok
{5} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.802425s] ... ok
{25} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [6.821863s] ... ok
{43} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [2.450266s] ... ok
{36} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [4.865457s] ... ok
{54} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [5.003477s] ... ok
{21} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [6.895808s] ... ok
{38} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [5.430593s] ... ok
{34} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [6.038906s] ... ok
{13} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [3.512204s] ... ok
{3} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [2.184688s] ... ok
{0} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [1.085525s] ... ok
{27} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.426584s] ... ok
{32} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [4.046507s] ... ok
{52} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [5.127150s] ... ok
{17} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [5.412612s] ... ok
{28} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [4.159319s] ... ok
{12} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.804598s] ... ok
{40} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.555837s] ... ok
{13} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.677476s] ... ok
{50} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [3.972413s] ... ok
{2} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [7.357474s] ... ok
{16} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [7.091032s] ... ok
{42} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [5.209436s] ... ok
{23} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.201085s] ... ok
{51} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [4.697895s] ... ok
{19} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.292059s] ... ok
{53} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [4.683108s] ... ok
{4} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [7.684184s] ... ok
{47} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [4.144596s] ... ok
{14} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [7.515970s] ... ok
{35} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.231655s] ... ok
======
Totals
======
Ran: 116 tests in 12.8348 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 558.1390 sec.
==============
Worker Balance
==============
- Worker 0 (2 tests) => 0:00:10.880175
- Worker 1 (2 tests) => 0:00:09.610477
- Worker 2 (2 tests) => 0:00:11.194379
- Worker 3 (2 tests) => 0:00:10.323974
- Worker 4 (2 tests) => 0:00:12.114954
- Worker 5 (2 tests) => 0:00:10.196159
- Worker 6 (2 tests) => 0:00:08.014121
- Worker 7 (2 tests) => 0:00:07.740089
- Worker 8 (2 tests) => 0:00:09.946204
- Worker 9 (2 tests) => 0:00:08.087137
- Worker 10 (2 tests) => 0:00:07.661353
- Worker 11 (3 tests) => 0:00:08.019735
- Worker 12 (3 tests) => 0:00:11.126927
- Worker 13 (3 tests) => 0:00:11.192567
- Worker 14 (2 tests) => 0:00:12.430147
- Worker 15 (2 tests) => 0:00:09.987157
- Worker 16 (2 tests) => 0:00:11.502374
- Worker 17 (2 tests) => 0:00:10.567197
- Worker 18 (2 tests) => 0:00:08.201429
- Worker 19 (2 tests) => 0:00:11.576979
- Worker 20 (2 tests) => 0:00:09.788105
- Worker 21 (2 tests) => 0:00:10.101941
- Worker 22 (2 tests) => 0:00:09.175093
- Worker 23 (2 tests) => 0:00:11.618030
- Worker 24 (2 tests) => 0:00:09.674618
- Worker 25 (2 tests) => 0:00:10.090209
- Worker 26 (2 tests) => 0:00:08.166479
- Worker 27 (2 tests) => 0:00:09.982078
- Worker 28 (2 tests) => 0:00:10.597867
- Worker 29 (2 tests) => 0:00:08.311740
- Worker 30 (2 tests) => 0:00:09.817846
- Worker 31 (2 tests) => 0:00:09.702703
- Worker 32 (2 tests) => 0:00:10.154388
- Worker 33 (2 tests) => 0:00:07.963028
- Worker 34 (2 tests) => 0:00:10.067499
- Worker 35 (2 tests) => 0:00:12.290333
- Worker 36 (2 tests) => 0:00:09.990232
- Worker 37 (2 tests) => 0:00:09.685392
- Worker 38 (3 tests) => 0:00:09.941486
- Worker 39 (2 tests) => 0:00:07.615480
- Worker 40 (2 tests) => 0:00:10.601443
- Worker 41 (2 tests) => 0:00:09.528517
- Worker 42 (2 tests) => 0:00:11.353095
- Worker 43 (2 tests) => 0:00:09.883842
- Worker 44 (2 tests) => 0:00:10.099450
- Worker 45 (2 tests) => 0:00:09.517093
- Worker 46 (2 tests) => 0:00:09.780086
- Worker 47 (2 tests) => 0:00:11.751380
- Worker 48 (2 tests) => 0:00:07.887453
- Worker 49 (2 tests) => 0:00:09.695638
- Worker 50 (2 tests) => 0:00:11.094402
- Worker 51 (2 tests) => 0:00:11.543313
- Worker 52 (2 tests) => 0:00:10.385440
- Worker 53 (2 tests) => 0:00:11.662175
- Worker 54 (2 tests) => 0:00:10.049968
- Worker 55 (2 tests) => 0:00:08.308716
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.792
nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate 8.415
nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute 8.137
nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules 8.057
nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate 8.010
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False 7.870
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.802
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True 7.684
nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True 7.605
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True 7.516
__________________________________________________________________________ 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@1aa89f0ed17b83ace41cfc420b4b70c40c9703df#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.limit==1.5.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='1823219849'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
2022-03-16 12:04:02.777 1193471 INFO oslo_service.periodic_task [req-0b8487b4-4310-4c33-8c7a-b7f857df6bfb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:02.830 1193475 INFO oslo_service.periodic_task [req-c900fba4-2aa4-4487-944d-7237f7eb004e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:02.858 1193477 INFO oslo_service.periodic_task [req-2f689a9c-f99e-4c96-a749-e2651f9ac6d7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:02.880 1193469 INFO oslo_service.periodic_task [req-24e47ad7-b091-4673-86e6-96fbfa9328af - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:02.922 1193501 INFO oslo_service.periodic_task [req-edf7bd08-dfd4-46bb-9644-eb60260763e9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:02.951 1193473 INFO oslo_service.periodic_task [req-559de244-8659-4238-b883-3746f9506e1a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:02.997 1193523 INFO oslo_service.periodic_task [req-18b30d14-c2d7-4271-a202-156683404ad8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:02.996 1193503 INFO oslo_service.periodic_task [req-ad093f34-8acc-4f94-84fa-4dc35b5e4d7b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.020 1193519 INFO oslo_service.periodic_task [req-317c122d-d563-410e-af40-63715f7258a1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.038 1193481 INFO oslo_service.periodic_task [req-e424760f-692b-4db7-a3db-57ce18e38504 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.040 1193491 INFO oslo_service.periodic_task [req-5b40db8f-5d0f-477d-b455-777b6ea954fc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.054 1193479 INFO oslo_service.periodic_task [req-3ebc4107-9d2b-4da9-90d8-d0c5d40a8b7e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.098 1193517 INFO oslo_service.periodic_task [req-35a30244-9d61-463d-bb1e-db8523b1eff9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.112 1193511 INFO oslo_service.periodic_task [req-33c14ca5-3922-4561-aa62-869e129c6c9a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.112 1193507 INFO oslo_service.periodic_task [req-16ed8e97-78d9-4337-80e4-4df8fe996a24 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.122 1193525 INFO oslo_service.periodic_task [req-a510e2d0-9a57-458b-8cac-dc15557ffb52 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.123 1193521 INFO oslo_service.periodic_task [req-55dd4ced-2682-4418-96ed-5d595bd66df2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.128 1193505 INFO oslo_service.periodic_task [req-0be68b37-0696-4454-a83d-c4c7cb01ec91 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.138 1193487 INFO oslo_service.periodic_task [req-f773d17d-31e3-42b8-8149-d03b43cd1c47 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.161 1193495 INFO oslo_service.periodic_task [req-bbe60e00-e3f9-4709-97f8-427022067328 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.173 1193533 INFO oslo_service.periodic_task [req-b4a4f032-5370-4320-a6b1-71282d48e182 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.179 1193513 INFO oslo_service.periodic_task [req-db4ef6d5-c136-4c95-a5ec-86ece848604f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.185 1193499 INFO oslo_service.periodic_task [req-8949f86a-9663-421c-af30-2d6357d96b4d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.186 1193493 INFO oslo_service.periodic_task [req-14e95f44-c707-4731-b38b-814917754a83 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.194 1193485 INFO oslo_service.periodic_task [req-8531e504-79e6-452f-9df8-22f3d5d777b0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.202 1193515 INFO oslo_service.periodic_task [req-8d0fadd8-96cf-4f97-8b6e-591978c716f8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.213 1193483 INFO oslo_service.periodic_task [req-c2eea11e-57e9-4b02-a4a7-74f2cfdf5a8a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.227 1193509 INFO oslo_service.periodic_task [req-9de0ff95-237b-4404-aff8-b4fbfc94ed15 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.234 1193531 INFO oslo_service.periodic_task [req-a75ca443-a039-4b40-8a5e-f9242a7c01c0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.239 1193559 INFO oslo_service.periodic_task [req-e4e682d0-e2d6-4e36-aada-c215d67d6ef3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.253 1193541 INFO oslo_service.periodic_task [req-621ecb76-5d02-4939-8deb-564f81bc2f1e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.260 1193543 INFO oslo_service.periodic_task [req-be53364c-91e8-4768-ad96-678aecd67923 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.264 1193571 INFO oslo_service.periodic_task [req-10585ad6-605e-4b2f-b54b-84a0020037e9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.273 1193555 INFO oslo_service.periodic_task [req-3e6551b7-d805-4aa4-85eb-85c63a507b22 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.278 1193557 INFO oslo_service.periodic_task [req-036dc3ea-3219-467a-89f4-1a8ae42c049a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.284 1193547 INFO oslo_service.periodic_task [req-499d7955-bf69-4287-8d4b-8c120c57210f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.293 1193529 INFO oslo_service.periodic_task [req-c181b458-99f3-4bae-bcae-9115528b2c0d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.301 1193567 INFO oslo_service.periodic_task [req-61bd7cd8-7c00-4bb0-b0dc-8fb005aaeab0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.313 1193573 INFO oslo_service.periodic_task [req-e84bd465-0cbc-4206-98c6-6d1f9b57b0a5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.319 1193578 INFO oslo_service.periodic_task [req-347f2a69-be84-411f-837e-4de2a8150ab2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.328 1193565 INFO oslo_service.periodic_task [req-bf8b407c-a16e-4512-a0d3-5c9a4e6b4ff3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.331 1193551 INFO oslo_service.periodic_task [req-f3693e88-34ba-4242-895e-8b64db797008 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.341 1193527 INFO oslo_service.periodic_task [req-504c6644-fd4c-4d0a-8ffa-42fd2f6b74d8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.343 1193561 INFO oslo_service.periodic_task [req-14a6f678-2134-40e1-b88e-43b2a341706c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.385 1193489 INFO oslo_service.periodic_task [req-ce913b1e-26bd-4caf-ad1a-82bd435ac570 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.414 1193497 INFO oslo_service.periodic_task [req-2953ec3a-241a-471a-a2b2-43389df8ac5c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.414 1193569 INFO oslo_service.periodic_task [req-2dd309a4-ad96-4a5d-9de3-e122e798bda4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.421 1193537 INFO oslo_service.periodic_task [req-08c411ea-86b1-44b5-b62c-a70758fc4e4e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.423 1193563 INFO oslo_service.periodic_task [req-ffb315ee-92bd-4488-899f-7d54a5dc9980 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.440 1193539 INFO oslo_service.periodic_task [req-4abdbf5e-00c9-44c3-b889-48e1abf1c884 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.441 1193549 INFO oslo_service.periodic_task [req-34dca3a7-7c4e-4db7-a844-02ced23a6430 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.498 1193576 INFO oslo_service.periodic_task [req-26d16b9f-859d-4fa7-8997-be5e47cc8133 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.518 1193535 INFO oslo_service.periodic_task [req-ed920a8d-f6e0-4ff4-bafc-c0d73b2cd4b2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.532 1193580 INFO oslo_service.periodic_task [req-71e0660b-9be2-4ada-b40f-ae68402ebefc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.608 1193545 INFO oslo_service.periodic_task [req-92445568-e510-40ec-bc6d-4e7d580f591b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:03.656 1193553 INFO oslo_service.periodic_task [req-58358217-0a53-4832-84d0-328a90d6d0b5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
{35} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [1.658265s] ... ok
{40} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.731158s] ... ok
{6} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.397909s] ... ok
{11} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.445885s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.525516s] ... ok
{12} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.502829s] ... ok
{7} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.513125s] ... ok
{1} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [2.955658s] ... ok
{13} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.584064s] ... ok
{8} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.558290s] ... ok
{10} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.462689s] ... ok
{3} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.614391s] ... ok
{20} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [3.311414s] ... ok
{22} 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_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [3.876550s] ... ok
{28} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.747139s] ... ok
{29} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [3.833669s] ... ok
{34} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.844908s] ... ok
{31} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [4.082785s] ... ok
{39} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.150221s] ... ok
{33} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [4.086717s] ... ok
{9} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [4.500463s] ... ok
{48} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [4.530574s] ... ok
{14} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [4.639193s] ... ok
{27} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.301913s] ... ok
{50} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [5.014581s] ... ok
{19} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [5.388902s] ... ok
{55} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [4.983258s] ... ok
{25} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.561404s] ... ok
{44} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.345349s] ... ok
{43} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [5.346747s] ... ok
{54} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [5.312630s] ... ok
{52} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.327567s] ... ok
{47} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.230885s] ... ok
{15} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [5.514925s] ... ok
{37} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.478136s] ... ok
{53} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.302544s] ... ok
{32} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [6.108611s] ... ok
{45} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [6.131383s] ... ok
{23} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [6.320731s] ... ok
{26} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.418520s] ... ok
{38} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [5.990070s] ... ok
{24} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [6.658099s] ... ok
{18} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [6.628727s] ... ok
{30} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [6.489931s] ... ok
{46} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [6.522429s] ... ok
{51} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [6.743731s] ... ok
{11} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [4.650064s] ... ok
{36} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [6.918652s] ... ok
{16} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [7.305553s] ... ok
{40} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.065254s] ... ok
{49} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [7.110184s] ... ok
{35} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [5.552983s] ... ok
{2} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [7.760432s] ... ok
{17} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [7.729062s] ... ok
{22} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [4.209352s] ... ok
{41} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [7.444488s] ... ok
{42} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [7.131279s] ... ok
{28} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [4.240409s] ... ok
{43} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [2.536352s] ... ok
{13} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [5.415062s] ... ok
{8} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [5.440061s] ... ok
{20} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [4.660444s] ... ok
{31} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [4.032320s] ... ok
{3} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [5.103257s] ... ok
{44} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [2.980667s] ... ok
{33} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [4.063321s] ... ok
{21} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [8.645899s] ... ok
{53} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [3.044672s] ... ok
{39} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [4.572439s] ... ok
{2} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.485117s] ... ok
{0} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.319270s] ... ok
{1} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [6.649247s] ... ok
{39} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.557801s] ... ok
{25} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [4.126046s] ... ok
{34} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.526758s] ... ok
{45} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [3.455554s] ... ok
{52} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [4.260918s] ... ok
{38} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [3.318419s] ... ok
{37} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [4.289396s] ... ok
{50} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [4.698227s] ... ok
{32} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [3.908256s] ... ok
{26} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.659648s] ... ok
{27} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [4.910228s] ... ok
{6} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.796450s] ... ok
{23} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [3.712459s] ... ok
{24} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.478983s] ... ok
{47} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.625014s] ... ok
{17} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [2.564040s] ... ok
{18} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.583136s] ... ok
{10} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [7.497700s] ... ok
{1} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [1.012540s] ... ok
{16} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [3.227154s] ... ok
{55} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [4.932964s] ... ok
{7} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [7.744051s] ... ok
{38} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.547592s] ... ok
{5} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.923719s] ... ok
{14} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [5.604198s] ... ok
{12} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [8.094516s] ... ok
{4} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [7.062506s] ... ok
{36} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [3.635466s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "security_group_instance_association", "security_groups" and FROM element "instances". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{30} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [4.048344s] ... ok
{54} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [5.278687s] ... ok
{48} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [6.175389s] ... ok
{29} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.900544s] ... ok
{40} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.044529s] ... ok
{21} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [2.709190s] ... ok
{9} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [6.843955s] ... ok
{46} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [4.787856s] ... ok
{51} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [4.708122s] ... ok
{49} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [4.369843s] ... ok
{41} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [4.095274s] ... ok
{42} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [4.405053s] ... ok
{19} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [7.059573s] ... ok
{15} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [6.924594s] ... ok
{35} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [5.231881s] ... ok
======
Totals
======
Ran: 116 tests in 13.1231 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 557.4664 sec.
==============
Worker Balance
==============
- Worker 0 (1 tests) => 0:00:09.319270
- Worker 1 (3 tests) => 0:00:10.621177
- Worker 2 (2 tests) => 0:00:09.247709
- Worker 3 (2 tests) => 0:00:08.720148
- Worker 4 (2 tests) => 0:00:10.940204
- Worker 5 (2 tests) => 0:00:10.452026
- Worker 6 (2 tests) => 0:00:10.197387
- Worker 7 (2 tests) => 0:00:10.260004
- Worker 8 (2 tests) => 0:00:08.001134
- Worker 9 (2 tests) => 0:00:11.346155
- Worker 10 (2 tests) => 0:00:09.961915
- Worker 11 (2 tests) => 0:00:07.098706
- Worker 12 (2 tests) => 0:00:10.600220
- Worker 13 (2 tests) => 0:00:08.001065
- Worker 14 (2 tests) => 0:00:10.244502
- Worker 15 (2 tests) => 0:00:12.440459
- Worker 16 (2 tests) => 0:00:10.535017
- Worker 17 (2 tests) => 0:00:10.294816
- Worker 18 (2 tests) => 0:00:10.213187
- Worker 19 (2 tests) => 0:00:12.449559
- Worker 20 (2 tests) => 0:00:07.973038
- Worker 21 (2 tests) => 0:00:11.357125
- Worker 22 (2 tests) => 0:00:07.600247
- Worker 23 (2 tests) => 0:00:10.034511
- Worker 24 (2 tests) => 0:00:10.138642
- Worker 25 (2 tests) => 0:00:09.688463
- Worker 26 (2 tests) => 0:00:10.080108
- Worker 27 (2 tests) => 0:00:10.212820
- Worker 28 (2 tests) => 0:00:07.988716
- Worker 29 (2 tests) => 0:00:10.735511
- Worker 30 (2 tests) => 0:00:10.539562
- Worker 31 (2 tests) => 0:00:08.116254
- Worker 32 (2 tests) => 0:00:10.018035
- Worker 33 (2 tests) => 0:00:08.151119
- Worker 34 (2 tests) => 0:00:09.372982
- Worker 35 (3 tests) => 0:00:12.447148
- Worker 36 (2 tests) => 0:00:10.555803
- Worker 37 (2 tests) => 0:00:09.769675
- Worker 38 (3 tests) => 0:00:09.857813
- Worker 39 (3 tests) => 0:00:09.282839
- Worker 40 (3 tests) => 0:00:10.845561
- Worker 41 (2 tests) => 0:00:11.541871
- Worker 42 (2 tests) => 0:00:11.537073
- Worker 43 (2 tests) => 0:00:07.884574
- Worker 44 (2 tests) => 0:00:08.327035
- Worker 45 (2 tests) => 0:00:09.588094
- Worker 46 (2 tests) => 0:00:11.311067
- Worker 47 (2 tests) => 0:00:09.857878
- Worker 48 (2 tests) => 0:00:10.707351
- Worker 49 (2 tests) => 0:00:11.481592
- Worker 50 (2 tests) => 0:00:09.714428
- Worker 51 (2 tests) => 0:00:11.453433
- Worker 52 (2 tests) => 0:00:09.590778
- Worker 53 (2 tests) => 0:00:08.349225
- Worker 54 (2 tests) => 0:00:10.593825
- Worker 55 (2 tests) => 0:00:09.917138
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.319
nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change 8.646
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False 8.095
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False 7.924
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.796
nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute 7.760
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True 7.744
nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate 7.729
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 7.498
nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup 7.444
__________________________________________________________________________ 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@1aa89f0ed17b83ace41cfc420b4b70c40c9703df#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.limit==1.5.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='108686193'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
2022-03-16 12:04:35.956 1194204 INFO oslo_service.periodic_task [req-2d024ca6-618e-4832-9cec-73d9a1e976e3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.090 1194208 INFO oslo_service.periodic_task [req-f3212bb3-0f94-4dc0-a72c-fd9082994e84 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.099 1194224 INFO oslo_service.periodic_task [req-bd6de1e7-3190-4c8f-bb32-c95083b9f5e3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.113 1194216 INFO oslo_service.periodic_task [req-3ae667f1-94c2-40ba-a5bd-59874987b80d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.162 1194234 INFO oslo_service.periodic_task [req-18811e31-cacf-402a-8d61-5ff38d3c3921 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.218 1194210 INFO oslo_service.periodic_task [req-b30bf597-eab6-463f-96ec-1e00c3001fdb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.218 1194214 INFO oslo_service.periodic_task [req-6722cd9a-d758-4b55-9340-f07433f83580 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.309 1194260 INFO oslo_service.periodic_task [req-9d779ae9-8651-4f06-9030-75ffb597c010 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.315 1194228 INFO oslo_service.periodic_task [req-d11654f1-c330-4539-a471-57be8dcf4eab - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.324 1194242 INFO oslo_service.periodic_task [req-4a74482a-a902-4aca-9ab7-1775fc883808 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.324 1194248 INFO oslo_service.periodic_task [req-98922f0c-744d-4c30-9e97-0f731bb9580c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.338 1194244 INFO oslo_service.periodic_task [req-896a4a87-2add-4a5b-8ff4-ba5ec2517342 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.344 1194238 INFO oslo_service.periodic_task [req-48ea3d83-6a34-4eee-bdc7-8dfcd2208fbc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.352 1194206 INFO oslo_service.periodic_task [req-837673ee-ba1d-46c3-91fe-a9a5e4ebfdc4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.370 1194232 INFO oslo_service.periodic_task [req-e2ce0b7a-7d98-4e06-87f7-e69dd379b687 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.384 1194250 INFO oslo_service.periodic_task [req-f6e855e0-a545-4373-a693-e85148e9ccfc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.393 1194252 INFO oslo_service.periodic_task [req-a9c93cdc-7736-4d79-b149-f971544bb924 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.398 1194308 INFO oslo_service.periodic_task [req-06bce0e2-d0c4-4637-9732-99f438a5bd3a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.405 1194246 INFO oslo_service.periodic_task [req-965bcd78-6a09-4dcd-bf7e-cecfc2051c50 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.409 1194276 INFO oslo_service.periodic_task [req-ff95c52b-83df-472a-be17-dc2942395ec1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.415 1194270 INFO oslo_service.periodic_task [req-8783218b-bb56-4739-9837-fe9fa46716eb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.430 1194304 INFO oslo_service.periodic_task [req-d34ac53b-3729-47d3-adf0-cfd067ad8464 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.433 1194266 INFO oslo_service.periodic_task [req-004c011d-1a9f-4624-9951-30afd676f6f9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.442 1194280 INFO oslo_service.periodic_task [req-cf8170ad-31af-4b6a-b705-594887e03225 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.456 1194226 INFO oslo_service.periodic_task [req-495e8353-9ab2-4fc6-b573-a797c86ae771 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.458 1194254 INFO oslo_service.periodic_task [req-53e85327-dfc6-44a0-9070-15298461b96e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.466 1194256 INFO oslo_service.periodic_task [req-6d2521da-2e8a-471b-a6c8-51b01d0b2050 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.483 1194218 INFO oslo_service.periodic_task [req-a123d42b-87a4-4910-902d-fcddece20ec8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.490 1194278 INFO oslo_service.periodic_task [req-425666c5-9c03-4825-9f2f-f40c9418ae00 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.496 1194264 INFO oslo_service.periodic_task [req-49db2085-8074-4293-9d4a-304e20d57033 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.517 1194212 INFO oslo_service.periodic_task [req-8277f5cd-a357-440d-997c-0718e74d3d64 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.519 1194230 INFO oslo_service.periodic_task [req-4d8c7096-2d22-4615-bb88-f9e21102233a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.528 1194286 INFO oslo_service.periodic_task [req-19384c03-55be-4665-85c0-e08719784d6d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.540 1194258 INFO oslo_service.periodic_task [req-14f20312-fe02-4c94-a7c8-4d0a377737a3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.546 1194300 INFO oslo_service.periodic_task [req-5e30e65e-0744-499e-9997-5104be84a06d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.545 1194294 INFO oslo_service.periodic_task [req-218f91bf-1425-4f34-acea-25cc7bf338d0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.549 1194290 INFO oslo_service.periodic_task [req-3f0a2ac8-e203-4f8a-be94-39913892cc88 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.566 1194284 INFO oslo_service.periodic_task [req-9e8c8ec5-77df-4a8a-b1d2-79a755ef700d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.568 1194292 INFO oslo_service.periodic_task [req-e16c1642-b323-409b-b67d-78cbbe49be83 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.574 1194272 INFO oslo_service.periodic_task [req-ba62a929-7efd-412b-aae4-94706c6d76c0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.587 1194220 INFO oslo_service.periodic_task [req-58ff8654-2330-410a-81ba-e681f24426df - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.616 1194240 INFO oslo_service.periodic_task [req-cc123936-4013-4319-a24b-258b1d7e205c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.618 1194222 INFO oslo_service.periodic_task [req-1c543f72-7f72-4ee2-867b-8a421ff0c31f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.625 1194274 INFO oslo_service.periodic_task [req-6feae1cd-85b9-4e19-9252-ea745d680f59 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.638 1194236 INFO oslo_service.periodic_task [req-fbc1464c-677d-4493-96a4-fbc89ccc5faa - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.643 1194282 INFO oslo_service.periodic_task [req-d81a235f-feea-4f56-9cc2-d2a69d1b7a70 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.667 1194288 INFO oslo_service.periodic_task [req-e205d70f-0981-4d82-bdf4-4b46d15dabc0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.694 1194296 INFO oslo_service.periodic_task [req-32132333-4afb-4371-96f8-2ff1ad024df9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.707 1194268 INFO oslo_service.periodic_task [req-14692695-99a1-43c7-ac2f-9aa544f6c143 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.720 1194315 INFO oslo_service.periodic_task [req-6f720847-0a45-41ec-9dcf-9c81c4189f9e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.725 1194302 INFO oslo_service.periodic_task [req-6ae7ac65-b3ec-4307-abe2-744b61689045 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.785 1194262 INFO oslo_service.periodic_task [req-da96a965-10b9-4829-b994-f07521b45fa1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.811 1194306 INFO oslo_service.periodic_task [req-0e953f8e-bd6a-49ea-a4f4-c028363e73a9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.834 1194298 INFO oslo_service.periodic_task [req-e33c722a-69c6-4815-a14b-e3520a478437 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.846 1194310 INFO oslo_service.periodic_task [req-253a1e68-1e4e-44a3-9ff5-cd1472b11b64 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:04:36.907 1194312 INFO oslo_service.periodic_task [req-bcb78de2-b098-41c7-aad1-340e261378b7 - - - - -] 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.681286s] ... ok
{6} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.383979s] ... ok
{2} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.498641s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.398449s] ... ok
{3} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.466540s] ... ok
{7} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.359392s] ... ok
{4} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.423210s] ... ok
{11} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.557718s] ... ok
{9} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.448892s] ... ok
{17} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [3.174779s] ... ok
{13} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [3.040464s] ... ok
{19} 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_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.557853s] ... ok
{28} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [3.710077s] ... ok
{27} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.757910s] ... ok
{36} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [3.933253s] ... ok
{30} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [3.899003s] ... ok
{37} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.948625s] ... ok
{29} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.771295s] ... ok
{40} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.311981s] ... ok
{14} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [4.537297s] ... ok
{15} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [4.835802s] ... ok
{48} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [4.605151s] ... ok
{52} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [4.869353s] ... ok
{47} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [4.474729s] ... ok
{50} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.311786s] ... ok
{51} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [4.954595s] ... ok
{41} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.294990s] ... ok
{43} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [5.289601s] ... ok
{45} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.367831s] ... ok
{44} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.473819s] ... ok
{32} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.385201s] ... ok
{42} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.499480s] ... ok
{35} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.757496s] ... ok
{24} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [6.318490s] ... ok
{34} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [6.157372s] ... ok
{22} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [6.520275s] ... ok
{25} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.455578s] ... ok
{10} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [6.890059s] ... ok
{26} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [6.532081s] ... ok
{20} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [6.727568s] ... ok
{46} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [6.508278s] ... ok
{39} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [6.801283s] ... ok
{54} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [6.580475s] ... ok
{12} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [7.237648s] ... ok
{53} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [6.717464s] ... ok
{38} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [7.180998s] ... ok
{33} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [7.243811s] ... ok
{31} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [7.250957s] ... ok
{16} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [7.264135s] ... ok
{49} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [7.249490s] ... ok
{55} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [7.378069s] ... ok
{7} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [5.317755s] ... ok
{36} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [3.860409s] ... ok
{38} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.551058s] ... ok
{5} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [5.702737s] ... ok
{9} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [5.317250s] ... ok
{28} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.398445s] ... ok
{48} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [3.357887s] ... ok
{31} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.894785s] ... ok
{19} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [4.905137s] ... ok
{40} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [3.709156s] ... ok
{29} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [4.035352s] ... ok
{23} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [4.674213s] ... ok
{11} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [5.605007s] ... ok
{1} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [6.625110s] ... ok
{21} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [8.405769s] ... ok
{51} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [3.123505s] ... ok
{30} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [4.594925s] ... ok
{10} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [2.435884s] ... ok
{27} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [5.263021s] ... ok
{0} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.897124s] ... ok
{55} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.757611s] ... ok
{18} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [9.255414s] ... ok
{40} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [1.317646s] ... ok
{26} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [2.926121s] ... ok
{8} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [9.419521s] ... ok
{35} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [3.654560s] ... ok
{3} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.350726s] ... ok
{0} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [0.240963s] ... ok
{32} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [4.122531s] ... ok
{22} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.426406s] ... ok
{44} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [4.230607s] ... ok
{37} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [5.845309s] ... ok
{25} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.371929s] ... ok
{20} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [3.238645s] ... ok
{50} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.594785s] ... ok
{2} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [7.903814s] ... ok
{43} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [4.729302s] ... ok
{17} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [7.067954s] ... ok
{6} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [8.104327s] ... ok
{16} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [2.822662s] ... ok
{12} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [3.188911s] ... ok
{45} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [4.842984s] ... ok
{4} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.851983s] ... ok
{24} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [4.153828s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "security_group_instance_association", "security_groups" and FROM element "instances". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{13} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [7.310859s] ... ok
{42} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [4.743249s] ... ok
{41} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [5.099395s] ... ok
{52} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [5.872699s] ... ok
{39} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.710698s] ... ok
{47} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [5.958303s] ... ok
{54} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [4.331115s] ... ok
{21} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.035993s] ... ok
{46} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [4.765993s] ... ok
{15} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [7.012524s] ... ok
{34} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.281387s] ... ok
{33} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.427469s] ... ok
{38} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [4.019976s] ... ok
{53} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [4.766040s] ... ok
{14} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [7.499002s] ... ok
{8} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [2.596986s] ... ok
{31} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [4.107929s] ... ok
{18} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [2.848965s] ... ok
{49} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [4.830059s] ... ok
{55} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [4.344859s] ... ok
======
Totals
======
Ran: 116 tests in 14.2593 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 560.9986 sec.
==============
Worker Balance
==============
- Worker 0 (2 tests) => 0:00:10.139520
- Worker 1 (2 tests) => 0:00:08.309058
- Worker 2 (2 tests) => 0:00:10.405513
- Worker 3 (2 tests) => 0:00:09.820157
- Worker 4 (2 tests) => 0:00:10.277499
- Worker 5 (2 tests) => 0:00:08.103204
- Worker 6 (2 tests) => 0:00:10.491041
- Worker 7 (2 tests) => 0:00:07.678871
- Worker 8 (2 tests) => 0:00:12.018564
- Worker 9 (2 tests) => 0:00:07.767523
- Worker 10 (2 tests) => 0:00:09.327220
- Worker 11 (2 tests) => 0:00:08.165264
- Worker 12 (2 tests) => 0:00:10.428308
- Worker 13 (2 tests) => 0:00:10.352713
- Worker 14 (2 tests) => 0:00:12.037243
- Worker 15 (2 tests) => 0:00:11.849651
- Worker 16 (2 tests) => 0:00:10.087834
- Worker 17 (2 tests) => 0:00:10.243886
- Worker 18 (2 tests) => 0:00:12.105110
- Worker 19 (2 tests) => 0:00:08.254260
- Worker 20 (2 tests) => 0:00:09.967810
- Worker 21 (2 tests) => 0:00:11.443341
- Worker 22 (2 tests) => 0:00:09.948536
- Worker 23 (2 tests) => 0:00:08.234272
- Worker 24 (2 tests) => 0:00:10.473394
- Worker 25 (2 tests) => 0:00:09.829424
- Worker 26 (2 tests) => 0:00:09.459341
- Worker 27 (2 tests) => 0:00:09.022547
- Worker 28 (2 tests) => 0:00:08.109635
- Worker 29 (2 tests) => 0:00:07.808493
- Worker 30 (2 tests) => 0:00:08.495141
- Worker 31 (3 tests) => 0:00:12.255877
- Worker 32 (2 tests) => 0:00:09.508502
- Worker 33 (2 tests) => 0:00:11.673211
- Worker 34 (2 tests) => 0:00:11.440545
- Worker 35 (2 tests) => 0:00:09.413983
- Worker 36 (2 tests) => 0:00:07.794539
- Worker 37 (2 tests) => 0:00:09.795686
- Worker 38 (3 tests) => 0:00:11.754908
- Worker 39 (2 tests) => 0:00:10.513866
- Worker 40 (3 tests) => 0:00:09.342614
- Worker 41 (2 tests) => 0:00:10.395662
- Worker 42 (2 tests) => 0:00:10.244170
- Worker 43 (2 tests) => 0:00:10.021128
- Worker 44 (2 tests) => 0:00:09.706641
- Worker 45 (2 tests) => 0:00:10.212552
- Worker 46 (2 tests) => 0:00:11.275504
- Worker 47 (2 tests) => 0:00:10.434326
- Worker 48 (2 tests) => 0:00:07.964057
- Worker 49 (2 tests) => 0:00:12.080412
- Worker 50 (2 tests) => 0:00:09.908853
- Worker 51 (2 tests) => 0:00:08.079478
- Worker 52 (2 tests) => 0:00:10.743526
- Worker 53 (2 tests) => 0:00:11.485064
- Worker 54 (2 tests) => 0:00:10.913315
- Worker 55 (3 tests) => 0:00:13.483166
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.897
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 9.420
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True 9.255
nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate 8.406
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True 8.104
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False 7.904
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.852
nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host 7.499
nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True 7.378
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False 7.351
__________________________________________________________________________ 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@1aa89f0ed17b83ace41cfc420b4b70c40c9703df#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.limit==1.5.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='2851630841'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
2022-03-16 12:05:09.933 1194871 INFO oslo_service.periodic_task [req-dd3cc562-a4b1-4a3f-9ea1-1b2dc6c61876 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:09.969 1194895 INFO oslo_service.periodic_task [req-8460c12f-090a-4f50-93d1-d0fb65ff19e0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:09.978 1194877 INFO oslo_service.periodic_task [req-46e5bceb-13b8-4eae-9b46-e392ac2e3ca8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.020 1194891 INFO oslo_service.periodic_task [req-aaeef235-8e3a-4b35-b723-35edd5cbb34b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.062 1194917 INFO oslo_service.periodic_task [req-29077522-c819-4355-9acb-82e3dc73bdd9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.091 1194873 INFO oslo_service.periodic_task [req-bb325bbd-fe3a-4b93-8d5b-e715e0c5bad2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.110 1194879 INFO oslo_service.periodic_task [req-1c5c4767-9865-4d68-aeb8-bee32389336e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.119 1194899 INFO oslo_service.periodic_task [req-735ffbcc-19de-4dd7-a3f0-f6611b5c7a7f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.149 1194925 INFO oslo_service.periodic_task [req-a4114765-91d6-4306-9cb6-4e8584c5c0b1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.151 1194883 INFO oslo_service.periodic_task [req-ad09046e-287a-429b-9030-142afc3bd747 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.165 1194893 INFO oslo_service.periodic_task [req-f025dd86-2ad9-45e7-b2ee-17f8a1ec64f6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.173 1194901 INFO oslo_service.periodic_task [req-d480f93e-7845-4750-bbd2-8e35968c4e22 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.178 1194937 INFO oslo_service.periodic_task [req-bc5114ac-50ea-43f1-a547-dd3e830a9e49 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.188 1194923 INFO oslo_service.periodic_task [req-0b17e6b1-db53-4443-a5d2-f562a0ccd719 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.201 1194889 INFO oslo_service.periodic_task [req-f512d322-52b3-41db-b3c8-450d57829b3f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.217 1194945 INFO oslo_service.periodic_task [req-fde63fc9-e453-423f-9ea0-0b7f6837194d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.229 1194875 INFO oslo_service.periodic_task [req-ab35e58c-453b-4bb8-9806-b4d3d1e7963b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.232 1194911 INFO oslo_service.periodic_task [req-bd3862bd-2073-413c-8993-69ced194ec4e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.299 1194919 INFO oslo_service.periodic_task [req-d16a1ab2-3ed2-4389-9c90-1ca220bf7762 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.302 1194909 INFO oslo_service.periodic_task [req-5eef08d9-d38e-4a02-a15a-896a97450a23 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.302 1194957 INFO oslo_service.periodic_task [req-1b1ca671-f61f-4c80-a115-3d8d41ffb0fa - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.315 1194887 INFO oslo_service.periodic_task [req-05618041-857e-4de6-8c84-f7d18c82b730 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.323 1194927 INFO oslo_service.periodic_task [req-725de3a2-c30a-435c-b465-162aac2494ab - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.348 1194941 INFO oslo_service.periodic_task [req-c5a34c9b-d933-4c87-a688-977196df8c67 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.353 1194933 INFO oslo_service.periodic_task [req-b7ae7412-4236-4f5a-be1b-1448710e6777 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.355 1194935 INFO oslo_service.periodic_task [req-3134d1e1-9fa7-443a-8e0e-def5ade1b769 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.356 1194959 INFO oslo_service.periodic_task [req-0a86a4c7-188b-43cd-bd21-f30387667a0a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.378 1194967 INFO oslo_service.periodic_task [req-01ac54aa-2ad9-4bed-acb2-fac119956e0b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.383 1194907 INFO oslo_service.periodic_task [req-d4f73e0b-5761-4eb4-a451-159d036e701a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.395 1194939 INFO oslo_service.periodic_task [req-7429ba59-18c1-4a97-a496-b1373d42e138 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.406 1194955 INFO oslo_service.periodic_task [req-0835c2cd-23e3-4c4e-8e11-a19b7cb17c24 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.413 1194905 INFO oslo_service.periodic_task [req-8000dd3b-d8bc-4805-8ecf-0d992dd9dd8f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.431 1194973 INFO oslo_service.periodic_task [req-db5ea190-075d-46c5-84eb-a40ed07db50d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.435 1194913 INFO oslo_service.periodic_task [req-349d4d77-17ba-4e92-aef1-27c8dae4fc0e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.436 1194943 INFO oslo_service.periodic_task [req-d8b4ee0a-35ad-4387-9dd3-c976517cd3f9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.444 1194982 INFO oslo_service.periodic_task [req-309ddf60-95da-41cb-bcda-4e34a07a6826 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.450 1194881 INFO oslo_service.periodic_task [req-e2e23916-b528-441b-9f86-651304b20b2d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.452 1194921 INFO oslo_service.periodic_task [req-52364129-0133-4818-8d96-4d11713551e6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.456 1194951 INFO oslo_service.periodic_task [req-0a124318-9d75-49e1-8f51-c635fdfa9cd2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.490 1194915 INFO oslo_service.periodic_task [req-b41e2369-c1a5-4b99-9efe-95e127017693 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.499 1194931 INFO oslo_service.periodic_task [req-dc46f33b-7a32-4de9-a4c4-fcef41f286a2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.499 1194961 INFO oslo_service.periodic_task [req-f68ef6f0-25a2-427c-9b65-868ca9a87c64 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.521 1194977 INFO oslo_service.periodic_task [req-9e99158d-4394-4bc2-8c54-5b1679a1c1c3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.524 1194953 INFO oslo_service.periodic_task [req-f0e1d8f5-8d54-4dfe-a4f4-12dfd126e2e5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.533 1194903 INFO oslo_service.periodic_task [req-cc83602e-b770-44a6-98fc-cd1cd9a7f072 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.562 1194885 INFO oslo_service.periodic_task [req-8e7ac3d3-e42a-4442-a2f6-5d3e423c9b0c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.563 1194947 INFO oslo_service.periodic_task [req-44b7aee7-c689-4b5c-a62e-9eb74f2f33a6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.565 1194929 INFO oslo_service.periodic_task [req-eb22132d-afc6-43fa-a946-a89ed8e2d46b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.594 1194949 INFO oslo_service.periodic_task [req-f3cb826d-5ba2-467c-ab16-7c7b88c4fdfc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.615 1194897 INFO oslo_service.periodic_task [req-b6c7bdb9-f93a-4ad6-86aa-46e3fcb721c6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.620 1194969 INFO oslo_service.periodic_task [req-c3a8ee41-d625-4f03-9d56-bc96c1dbcac8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.638 1194975 INFO oslo_service.periodic_task [req-1ed59343-92b3-4e0d-b284-cdec042d6123 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.750 1194971 INFO oslo_service.periodic_task [req-852de502-d9a5-42df-aba2-38c54c188cfe - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.794 1194979 INFO oslo_service.periodic_task [req-4b943ef6-d988-44d7-bd59-75692ab8c038 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.845 1194965 INFO oslo_service.periodic_task [req-4a55fee5-e870-42ae-8841-00327c0f5b44 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:10.892 1194963 INFO oslo_service.periodic_task [req-97bc0a96-0ec2-4cdf-b6c0-5f482d6085b3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
{40} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [1.682387s] ... ok
{51} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.718711s] ... ok
{3} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.398344s] ... ok
{10} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.446122s] ... ok
{4} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.402946s] ... ok
{9} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.414650s] ... ok
{2} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.458370s] ... ok
{8} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.529105s] ... ok
{5} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.436470s] ... ok
{7} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.451033s] ... ok
{18} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [3.307693s] ... ok
{21} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{33} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [3.838867s] ... ok
{25} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.618502s] ... ok
{31} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.925542s] ... ok
{30} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.856333s] ... ok
{35} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [4.024391s] ... ok
{6} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [4.431475s] ... ok
{42} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.275798s] ... ok
{53} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [4.661457s] ... ok
{17} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [4.813598s] ... ok
{14} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [5.186625s] ... ok
{47} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [4.522081s] ... ok
{49} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [4.840765s] ... ok
{27} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [5.351385s] ... ok
{26} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [5.405760s] ... ok
{44} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.261841s] ... ok
{43} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.378257s] ... ok
{45} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [5.229017s] ... ok
{37} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.552628s] ... ok
{32} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.419863s] ... ok
{34} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.441272s] ... ok
{38} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.437054s] ... ok
{51} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [3.977488s] ... ok
{39} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.545896s] ... ok
{40} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [4.070841s] ... ok
{50} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [5.966075s] ... ok
{28} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.424060s] ... ok
{20} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [6.519975s] ... ok
{29} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [6.189413s] ... ok
{55} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [6.419514s] ... ok
{48} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [6.492421s] ... ok
{24} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [6.578048s] ... ok
{52} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [6.466418s] ... ok
{12} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [7.210905s] ... ok
{46} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [6.451579s] ... ok
{54} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [6.547448s] ... ok
{15} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [7.275842s] ... ok
{16} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [6.922149s] ... ok
{11} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [7.449355s] ... ok
{36} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [7.204238s] ... ok
{22} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [7.150232s] ... ok
{19} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [7.381261s] ... ok
{52} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.636205s] ... ok
{23} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [7.746587s] ... ok
{34} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [2.032114s] ... ok
{51} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [1.941180s] ... ok
{13} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [7.468711s] ... ok
{8} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [5.413105s] ... ok
{41} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [7.808090s] ... ok
{21} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [4.599941s] ... ok
{3} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [6.190900s] ... ok
{16} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [1.140969s] ... ok
{28} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [1.863411s] ... ok
{25} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [4.587437s] ... ok
{30} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [4.340965s] ... ok
{33} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [5.137307s] ... ok
{37} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [3.665550s] ... ok
{10} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [7.031100s] ... ok
{48} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [2.715717s] ... ok
{53} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [4.405730s] ... ok
{1} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [9.515777s] ... ok
{0} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.696203s] ... ok
{40} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [3.549302s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "security_group_instance_association", "security_groups" and FROM element "instances". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{42} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [5.074535s] ... ok
{4} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [7.324657s] ... ok
{49} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.534602s] ... ok
{7} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [7.051671s] ... ok
{12} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [2.927066s] ... ok
{24} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.254778s] ... ok
{27} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [4.682970s] ... ok
{20} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [3.497421s] ... ok
{44} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [4.707599s] ... ok
{31} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [6.078843s] ... ok
{9} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.742638s] ... ok
{38} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [4.359683s] ... ok
{5} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [7.554142s] ... ok
{26} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [4.877093s] ... ok
{2} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [7.814881s] ... ok
{11} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [2.931729s] ... ok
{15} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.114641s] ... ok
{29} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.854627s] ... ok
{45} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.885032s] ... ok
{39} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [4.563496s] ... ok
{18} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [7.043006s] ... ok
{43} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [5.055959s] ... ok
{14} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [5.504955s] ... ok
{1} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.338681s] ... ok
{32} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [5.178474s] ... ok
{47} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [5.717040s] ... ok
{35} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [6.793438s] ... ok
{19} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [3.487948s] ... ok
{22} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [3.546986s] ... ok
{41} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [2.908379s] ... ok
{13} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [3.251771s] ... ok
{39} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.679377s] ... ok
{55} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [4.593677s] ... ok
{23} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.677384s] ... ok
{36} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [4.030168s] ... ok
{50} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [5.033958s] ... ok
{17} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.899737s] ... ok
{6} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.645881s] ... ok
{50} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [0.544450s] ... ok
{52} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [4.753668s] ... ok
{54} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [5.305468s] ... ok
{46} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.530253s] ... ok
======
Totals
======
Ran: 116 tests in 12.9751 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 559.1142 sec.
==============
Worker Balance
==============
- Worker 0 (1 tests) => 0:00:09.696203
- Worker 1 (2 tests) => 0:00:10.856697
- Worker 2 (2 tests) => 0:00:10.275992
- Worker 3 (2 tests) => 0:00:08.591657
- Worker 4 (2 tests) => 0:00:09.730667
- Worker 5 (2 tests) => 0:00:09.992894
- Worker 6 (2 tests) => 0:00:12.078548
- Worker 7 (2 tests) => 0:00:09.505956
- Worker 8 (2 tests) => 0:00:07.945010
- Worker 9 (2 tests) => 0:00:10.160105
- Worker 10 (2 tests) => 0:00:09.479979
- Worker 11 (2 tests) => 0:00:10.383243
- Worker 12 (2 tests) => 0:00:10.139386
- Worker 13 (2 tests) => 0:00:10.721730
- Worker 14 (2 tests) => 0:00:10.694184
- Worker 15 (2 tests) => 0:00:10.391997
- Worker 16 (2 tests) => 0:00:08.064436
- Worker 17 (2 tests) => 0:00:11.715185
- Worker 18 (2 tests) => 0:00:10.352448
- Worker 19 (2 tests) => 0:00:10.871513
- Worker 20 (2 tests) => 0:00:10.019457
- Worker 21 (2 tests) => 0:00:07.916184
- Worker 22 (2 tests) => 0:00:10.698403
- Worker 23 (2 tests) => 0:00:11.425822
- Worker 24 (2 tests) => 0:00:09.834805
- Worker 25 (2 tests) => 0:00:08.206898
- Worker 26 (2 tests) => 0:00:10.283945
- Worker 27 (2 tests) => 0:00:10.035920
- Worker 28 (2 tests) => 0:00:08.289163
- Worker 29 (2 tests) => 0:00:10.045050
- Worker 30 (2 tests) => 0:00:08.198866
- Worker 31 (2 tests) => 0:00:10.006223
- Worker 32 (2 tests) => 0:00:10.600833
- Worker 33 (2 tests) => 0:00:08.977163
- Worker 34 (2 tests) => 0:00:07.474331
- Worker 35 (2 tests) => 0:00:10.818700
- Worker 36 (2 tests) => 0:00:11.235910
- Worker 37 (2 tests) => 0:00:09.220751
- Worker 38 (2 tests) => 0:00:09.798515
- Worker 39 (3 tests) => 0:00:10.792048
- Worker 40 (3 tests) => 0:00:09.305829
- Worker 41 (2 tests) => 0:00:10.718414
- Worker 42 (2 tests) => 0:00:09.351876
- Worker 43 (2 tests) => 0:00:10.436592
- Worker 44 (2 tests) => 0:00:09.972183
- Worker 45 (2 tests) => 0:00:10.115795
- Worker 46 (2 tests) => 0:00:11.982927
- Worker 47 (2 tests) => 0:00:10.240148
- Worker 48 (2 tests) => 0:00:09.209345
- Worker 49 (2 tests) => 0:00:09.377065
- Worker 50 (3 tests) => 0:00:11.546487
- Worker 51 (3 tests) => 0:00:07.640519
- Worker 52 (3 tests) => 0:00:11.858570
- Worker 53 (2 tests) => 0:00:09.068658
- Worker 54 (2 tests) => 0:00:11.854475
- Worker 55 (2 tests) => 0:00:11.014640
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.696
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 9.516
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True 7.815
nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate 7.808
nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change 7.747
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False 7.743
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.646
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False 7.554
nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 7.469
nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists 7.449
__________________________________________________________________________ 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@1aa89f0ed17b83ace41cfc420b4b70c40c9703df#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.limit==1.5.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='2528468745'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
2022-03-16 12:05:42.286 1195537 INFO oslo_service.periodic_task [req-f08b0065-4b40-4156-8f50-bfca7396a25b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.351 1195567 INFO oslo_service.periodic_task [req-fa7d9766-cd24-4f55-94fd-ddf6d99913c8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.507 1195565 INFO oslo_service.periodic_task [req-df8beb51-ca16-4527-a58f-1b731b447371 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.509 1195583 INFO oslo_service.periodic_task [req-79a87b61-ecf8-40f4-acbe-4878bcc3240f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.512 1195555 INFO oslo_service.periodic_task [req-39534fa7-a1be-45ba-a9be-af6ae94110e2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.541 1195561 INFO oslo_service.periodic_task [req-e9f62131-4c30-45da-a0f0-6ccdfd2be680 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.550 1195549 INFO oslo_service.periodic_task [req-a93d1e91-4140-4fe6-ab4f-6402ac839093 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.550 1195575 INFO oslo_service.periodic_task [req-34fc0418-3d7b-4588-b228-f826382eb5fb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.556 1195579 INFO oslo_service.periodic_task [req-9b38f452-698d-4f81-9f75-711f9dd5b6f4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.588 1195557 INFO oslo_service.periodic_task [req-6ef25eb4-38ba-4b51-9dc7-c1fec8781360 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.619 1195547 INFO oslo_service.periodic_task [req-b302ea50-670a-4a82-aed3-7c0c2f3523cc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.626 1195621 INFO oslo_service.periodic_task [req-b7e79526-02a2-4ff8-879f-423ad1c55138 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.636 1195609 INFO oslo_service.periodic_task [req-aadd4f8c-5cb9-4b76-ac5e-a4a020565f12 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.639 1195551 INFO oslo_service.periodic_task [req-b74fe435-e5bc-4cbe-bb06-840e4aa811ba - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.676 1195545 INFO oslo_service.periodic_task [req-3d667483-e94b-4acc-862a-58377d26137f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.684 1195559 INFO oslo_service.periodic_task [req-297e69f3-090b-4728-8f3c-dc98149185c0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.685 1195577 INFO oslo_service.periodic_task [req-19187434-c76b-47bc-ab2d-523086feb651 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.688 1195581 INFO oslo_service.periodic_task [req-1eb7af7b-188c-4304-a366-cd8671958d45 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.703 1195563 INFO oslo_service.periodic_task [req-3708ef5e-f8ce-4cdc-a703-8aece91eda4e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.708 1195589 INFO oslo_service.periodic_task [req-a14cc533-0563-4bc4-9057-3133bf9860c5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.708 1195573 INFO oslo_service.periodic_task [req-53d6af1b-bdfa-4aab-81bb-d4132880c269 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.726 1195637 INFO oslo_service.periodic_task [req-958d3298-8545-4e20-885a-06fa0fe69b5e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.734 1195553 INFO oslo_service.periodic_task [req-8215b6e6-ff5f-4273-a96c-190997621110 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.736 1195569 INFO oslo_service.periodic_task [req-0b9197e2-b804-4bae-b832-5305d7eca3a8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.754 1195603 INFO oslo_service.periodic_task [req-6794a5ea-a508-497e-b764-03e8b712396d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.754 1195543 INFO oslo_service.periodic_task [req-81c79cc2-e192-4d63-90ef-05caf74f81bd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.764 1195613 INFO oslo_service.periodic_task [req-4403efaa-cb37-4c30-8355-6edcdce3c169 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.760 1195591 INFO oslo_service.periodic_task [req-eaf336e4-4b1c-468a-9069-daa55b8a165f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.767 1195627 INFO oslo_service.periodic_task [req-11bb91ce-d479-47ac-9962-929f66485559 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.775 1195541 INFO oslo_service.periodic_task [req-24543c52-2b8e-4cff-b38e-58e8fc28f73c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.794 1195619 INFO oslo_service.periodic_task [req-ad5e3d1c-4ff2-4e6f-b499-531e5024c41b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.796 1195639 INFO oslo_service.periodic_task [req-ecb68eca-e862-44d1-a768-d4fc1e021198 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.822 1195617 INFO oslo_service.periodic_task [req-64ae72f2-b56c-4199-af59-969cbf4944d3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.823 1195641 INFO oslo_service.periodic_task [req-388e47e5-4594-410a-84f3-7e7695d29a4f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.824 1195635 INFO oslo_service.periodic_task [req-6ca80fc6-a737-419c-bbbe-9b218972944a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.841 1195593 INFO oslo_service.periodic_task [req-45824bf2-8bb0-4b57-8eea-dbf947ac0f9e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.841 1195623 INFO oslo_service.periodic_task [req-42aca6d4-3417-42a0-a008-275b37289022 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.828 1195539 INFO oslo_service.periodic_task [req-108fc952-a790-465b-9891-1c87fbd30452 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.870 1195571 INFO oslo_service.periodic_task [req-17e15d5f-8ca9-4a73-aacf-9d95ed26ba60 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.873 1195597 INFO oslo_service.periodic_task [req-f0ca9f9c-060c-4872-a4fd-9ab7968a8a67 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.887 1195615 INFO oslo_service.periodic_task [req-3758a061-d9c0-4fda-93db-347454e593a4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.887 1195585 INFO oslo_service.periodic_task [req-7ff11f7e-1290-423d-b651-ce0855b39285 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.900 1195605 INFO oslo_service.periodic_task [req-28eeb907-408a-45c8-8508-078144f27f74 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.905 1195633 INFO oslo_service.periodic_task [req-758e49d2-44fc-4f23-af65-d23ab72b0668 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.909 1195601 INFO oslo_service.periodic_task [req-f6d38401-fa79-4e3c-ab30-3df6e9a0de62 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.920 1195599 INFO oslo_service.periodic_task [req-ca174385-0f81-488f-ab2f-be298eec2558 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.919 1195611 INFO oslo_service.periodic_task [req-e4f56b3c-e757-4cb0-8278-bc5a1e6787a1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.945 1195625 INFO oslo_service.periodic_task [req-91a1afcc-3356-4006-b27f-56bfaed5727d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.953 1195629 INFO oslo_service.periodic_task [req-76a5ad5f-6915-44c8-bb5a-ef5fffc32293 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:42.986 1195644 INFO oslo_service.periodic_task [req-684c1ba8-76fa-411d-963e-f163d264eb7a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:43.002 1195587 INFO oslo_service.periodic_task [req-8629d664-514c-4eb9-b344-f16c5dacb93b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:43.007 1195649 INFO oslo_service.periodic_task [req-582a9378-f6ef-4a55-8e5b-c4656fd26f3a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:43.009 1195607 INFO oslo_service.periodic_task [req-2016c053-cefd-4716-a04b-d649ab91c76c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:43.011 1195631 INFO oslo_service.periodic_task [req-7accc23c-2da0-4c14-aa38-0a6f24c10d8c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:43.013 1195595 INFO oslo_service.periodic_task [req-51f02776-f74b-4220-abe6-5fbd0733dbbe - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:05:43.098 1195646 INFO oslo_service.periodic_task [req-d6b250f2-86a2-4b09-bf3c-e8e0937327bb - - - - -] 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.706979s] ... ok
{6} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.398150s] ... ok
{12} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.411029s] ... ok
{9} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.445922s] ... ok
{10} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.436733s] ... ok
{7} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.398224s] ... ok
{11} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.437348s] ... ok
{13} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.432768s] ... ok
{8} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.469582s] ... ok
{21} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [3.228370s] ... ok
{22} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{27} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.582433s] ... ok
{33} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.956228s] ... ok
{5} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [4.134390s] ... ok
{32} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.952291s] ... ok
{14} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [4.371584s] ... ok
{16} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [4.356969s] ... ok
{42} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [4.501691s] ... ok
{35} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [4.110798s] ... ok
{38} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.495851s] ... ok
{4} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [4.742008s] ... ok
{17} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [4.666179s] ... ok
{34} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [4.990304s] ... ok
{53} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [4.917574s] ... ok
{47} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.166108s] ... ok
{25} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.190426s] ... ok
{36} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.623011s] ... ok
{48} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [5.362418s] ... ok
{49} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [5.458026s] ... ok
{40} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.514486s] ... ok
{20} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [5.732445s] ... ok
{37} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.500472s] ... ok
{54} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [5.330760s] ... ok
{41} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.647400s] ... ok
{44} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.506164s] ... ok
{43} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [5.752763s] ... ok
{45} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [6.108678s] ... ok
{15} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [6.536726s] ... ok
{23} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [6.408591s] ... ok
{39} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [6.023768s] ... ok
{50} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [6.270965s] ... ok
{26} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [6.414119s] ... ok
{31} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [6.319024s] ... ok
{37} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.936013s] ... ok
{36} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [1.108004s] ... ok
{24} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [6.586143s] ... ok
{28} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.646123s] ... ok
{55} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [6.508693s] ... ok
{46} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [6.576964s] ... ok
{29} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [6.543546s] ... ok
{19} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [7.083261s] ... ok
{52} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [6.791696s] ... ok
{51} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [7.349104s] ... ok
{13} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [5.020161s] ... ok
{12} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [5.350714s] ... ok
{3} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [7.572562s] ... ok
{22} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [4.535952s] ... ok
{10} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [5.604444s] ... ok
{8} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [5.496959s] ... ok
{35} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [3.598801s] ... ok
{9} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [5.798256s] ... ok
{33} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [4.294743s] ... ok
{27} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.712685s] ... ok
{18} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [8.455464s] ... ok
{49} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [2.936645s] ... ok
{43} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [2.648697s] ... ok
{30} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [8.748548s] ... ok
{35} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [1.229801s] ... ok
{1} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [9.146813s] ... ok
{0} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.751365s] ... ok
{23} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [3.224900s] ... ok
{32} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [5.351180s] ... ok
{21} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [6.446717s] ... ok
{1} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [0.283544s] ... ok
{2} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [7.898074s] ... ok
{7} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [7.388074s] ... ok
{14} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [5.629187s] ... ok
{44} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.080546s] ... ok
{3} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [2.221377s] ... ok
{40} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [4.275507s] ... ok
{26} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [3.517451s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "security_group_instance_association", "security_groups" and FROM element "instances". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{24} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [3.155076s] ... ok
{45} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [3.803346s] ... ok
{47} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [4.581686s] ... ok
{6} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.840187s] ... ok
{31} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.578801s] ... ok
{19} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [3.309895s] ... ok
{41} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [4.500629s] ... ok
{29} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.485322s] ... ok
{11} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [7.971375s] ... ok
{39} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [4.182322s] ... ok
{54} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [4.665603s] ... ok
{3} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [0.579289s] ... ok
{42} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [6.019379s] ... ok
{38} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [5.909840s] ... ok
{15} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [4.321432s] ... ok
{25} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [5.026103s] ... ok
{36} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [3.984098s] ... ok
{48} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [5.159209s] ... ok
{53} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [5.681905s] ... ok
{55} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.125732s] ... ok
{2} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.312002s] ... ok
{34} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [5.866125s] ... ok
{30} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [2.178592s] ... ok
{50} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [4.920018s] ... ok
{52} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [4.439281s] ... ok
{4} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [6.704819s] ... ok
{28} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [4.656076s] ... ok
{5} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.457230s] ... ok
{46} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [4.765906s] ... ok
{18} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.191394s] ... ok
{16} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [7.403957s] ... ok
{51} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [4.435246s] ... ok
{20} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.285203s] ... ok
{17} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [7.202557s] ... ok
{37} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [6.029753s] ... ok
======
Totals
======
Ran: 116 tests in 13.1092 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 564.3934 sec.
==============
Worker Balance
==============
- Worker 0 (1 tests) => 0:00:09.751365
- Worker 1 (2 tests) => 0:00:09.431546
- Worker 2 (3 tests) => 0:00:10.922029
- Worker 3 (3 tests) => 0:00:10.377237
- Worker 4 (2 tests) => 0:00:11.449112
- Worker 5 (2 tests) => 0:00:11.593236
- Worker 6 (2 tests) => 0:00:10.241053
- Worker 7 (2 tests) => 0:00:09.789114
- Worker 8 (2 tests) => 0:00:07.969253
- Worker 9 (2 tests) => 0:00:08.245711
- Worker 10 (2 tests) => 0:00:08.043486
- Worker 11 (2 tests) => 0:00:10.411564
- Worker 12 (2 tests) => 0:00:07.764491
- Worker 13 (2 tests) => 0:00:07.455915
- Worker 14 (2 tests) => 0:00:10.001454
- Worker 15 (2 tests) => 0:00:10.859989
- Worker 16 (2 tests) => 0:00:11.761656
- Worker 17 (2 tests) => 0:00:11.870674
- Worker 18 (2 tests) => 0:00:11.648532
- Worker 19 (2 tests) => 0:00:10.397841
- Worker 20 (2 tests) => 0:00:12.018579
- Worker 21 (2 tests) => 0:00:09.675920
- Worker 22 (2 tests) => 0:00:07.843036
- Worker 23 (2 tests) => 0:00:09.635556
- Worker 24 (2 tests) => 0:00:09.742655
- Worker 25 (2 tests) => 0:00:10.217762
- Worker 26 (2 tests) => 0:00:09.932486
- Worker 27 (2 tests) => 0:00:08.297164
- Worker 28 (2 tests) => 0:00:11.303930
- Worker 29 (2 tests) => 0:00:10.030095
- Worker 30 (2 tests) => 0:00:10.928576
- Worker 31 (2 tests) => 0:00:09.899701
- Worker 32 (2 tests) => 0:00:09.305594
- Worker 33 (2 tests) => 0:00:08.252954
- Worker 34 (2 tests) => 0:00:10.858098
- Worker 35 (3 tests) => 0:00:08.942686
- Worker 36 (3 tests) => 0:00:10.717744
- Worker 37 (3 tests) => 0:00:12.468797
- Worker 38 (2 tests) => 0:00:10.408349
- Worker 39 (2 tests) => 0:00:10.207905
- Worker 40 (2 tests) => 0:00:09.791309
- Worker 41 (2 tests) => 0:00:10.150027
- Worker 42 (2 tests) => 0:00:10.521779
- Worker 43 (2 tests) => 0:00:08.402819
- Worker 44 (2 tests) => 0:00:09.588668
- Worker 45 (2 tests) => 0:00:09.913394
- Worker 46 (2 tests) => 0:00:11.346013
- Worker 47 (2 tests) => 0:00:09.749752
- Worker 48 (2 tests) => 0:00:10.524342
- Worker 49 (2 tests) => 0:00:08.395652
- Worker 50 (2 tests) => 0:00:11.192713
- Worker 51 (2 tests) => 0:00:11.786095
- Worker 52 (2 tests) => 0:00:11.232796
- Worker 53 (2 tests) => 0:00:10.601461
- Worker 54 (2 tests) => 0:00:09.998654
- Worker 55 (2 tests) => 0:00:10.636370
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.751
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 9.147
nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate 8.749
nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate 8.455
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True 7.971
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True 7.898
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.840
nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate 7.573
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False 7.457
nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host 7.404
__________________________________________________________________________ summary ___________________________________________________________________________
functional-py39: commands succeeded
congratulations :)
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@1aa89f0ed17b83ace41cfc420b4b70c40c9703df#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.limit==1.5.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='1959544614'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
2022-03-16 12:06:15.165 1196253 INFO oslo_service.periodic_task [req-db18e8b2-74d6-4b15-8e2b-57c00fe3b6af - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.184 1196257 INFO oslo_service.periodic_task [req-fd26def7-f9ea-40c4-bf7f-eeaad3004912 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.186 1196259 INFO oslo_service.periodic_task [req-de3a17d1-9ed0-4634-b162-614d6dad0a78 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.241 1196283 INFO oslo_service.periodic_task [req-db96f7bf-f1b9-42d9-bf50-181ef8b9530d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.285 1196293 INFO oslo_service.periodic_task [req-c66089ea-225c-4034-a348-60490fa421dd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.302 1196285 INFO oslo_service.periodic_task [req-48f09170-8ac2-4e9e-8713-3e4eb3ed2395 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.307 1196255 INFO oslo_service.periodic_task [req-aa8bbd23-01a5-42a0-ab28-214f80c179f2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.342 1196323 INFO oslo_service.periodic_task [req-9a30d251-9c7d-4e54-ae36-fe3f6e897ba4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.353 1196295 INFO oslo_service.periodic_task [req-430a9d11-ba93-41d4-929d-902d12765aa5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.356 1196277 INFO oslo_service.periodic_task [req-9be66423-64c0-4395-be2e-74a339f1d83e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.368 1196289 INFO oslo_service.periodic_task [req-4236c07a-dd8c-449a-879d-bd6c5f698a93 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.369 1196287 INFO oslo_service.periodic_task [req-aa8ca47a-9f71-484a-8eb0-8d51b9503065 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.367 1196265 INFO oslo_service.periodic_task [req-26765c4d-c085-4144-aa81-590f43c466ee - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.378 1196271 INFO oslo_service.periodic_task [req-ab4ecdc5-280c-4eaf-bd32-3372fde7c30a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.378 1196317 INFO oslo_service.periodic_task [req-f81e6042-92d8-4c35-ad9f-7ca312563426 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.410 1196331 INFO oslo_service.periodic_task [req-65cba55e-ce53-4573-942e-41d62847ec74 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.430 1196279 INFO oslo_service.periodic_task [req-a862c416-5e61-4661-8e7b-bcc6af335844 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.433 1196273 INFO oslo_service.periodic_task [req-7eb9171b-ee88-4d94-939b-74adcbce4ab8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.437 1196291 INFO oslo_service.periodic_task [req-2fce318f-85c8-4961-9173-e3e9dc0a3111 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.437 1196297 INFO oslo_service.periodic_task [req-e9cfc8bf-95d6-47e2-9798-0d0c20de0122 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.445 1196301 INFO oslo_service.periodic_task [req-b813ab7e-db42-4fb2-b173-87a710ad8ff8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.454 1196263 INFO oslo_service.periodic_task [req-11280e63-f4cb-4470-ae00-a01ebc4e5138 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.458 1196261 INFO oslo_service.periodic_task [req-1730cdc7-eb05-44f7-879d-eefeb8c11433 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.457 1196305 INFO oslo_service.periodic_task [req-f051baac-731a-4663-b6c4-5a088d5d616b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.476 1196307 INFO oslo_service.periodic_task [req-0d239f87-f055-4b1f-8986-3172e366ffc5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.476 1196309 INFO oslo_service.periodic_task [req-735a7295-6a28-4873-9bab-39eb1b910398 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.493 1196281 INFO oslo_service.periodic_task [req-ee7b8d97-da51-4d5c-bbff-6b13c0640faa - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.497 1196327 INFO oslo_service.periodic_task [req-4f636d1c-705b-4dcf-b8a7-01a81fe7f78e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.494 1196329 INFO oslo_service.periodic_task [req-1b11f5c9-0562-4e24-b777-54a381d6456b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.501 1196335 INFO oslo_service.periodic_task [req-6fb9075a-383b-42ba-9e26-7e70a4fe985d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.508 1196321 INFO oslo_service.periodic_task [req-69820fa0-2131-43bb-a2c8-ba49ed386598 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.514 1196319 INFO oslo_service.periodic_task [req-a5a39bb1-22a4-4d19-9a02-2333c25da80b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.516 1196341 INFO oslo_service.periodic_task [req-ebe4019a-646e-41fb-92a6-6797dec8dfd0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.534 1196325 INFO oslo_service.periodic_task [req-c895b393-db8a-4362-9c3b-1e27354877e7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.537 1196343 INFO oslo_service.periodic_task [req-712a8d62-cf53-4d31-9a3b-b547459836f8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.538 1196353 INFO oslo_service.periodic_task [req-8a3fbafe-08f8-4d53-92f5-03293b7f084e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.545 1196303 INFO oslo_service.periodic_task [req-171b6099-1c9b-4681-b66c-c0a9e0580805 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.549 1196337 INFO oslo_service.periodic_task [req-bc9cb19d-8f15-4ab3-a51b-8acfa9aeb742 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.550 1196275 INFO oslo_service.periodic_task [req-57ca80b1-b958-4c51-a9a2-11ee51713f67 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.560 1196362 INFO oslo_service.periodic_task [req-4be53100-8748-41f1-87bd-6dcc4b3e1513 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.564 1196333 INFO oslo_service.periodic_task [req-9e20ecf8-9ee8-455c-b8f5-ed104de6a9ea - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.566 1196345 INFO oslo_service.periodic_task [req-dd113a52-3556-408e-9392-87c56471bcef - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.595 1196269 INFO oslo_service.periodic_task [req-d592aa38-f31d-4c9c-bfa5-745f6e6e51a8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.600 1196267 INFO oslo_service.periodic_task [req-90c21c13-fbd4-468c-bdf9-42b8c3ea8ca8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.601 1196355 INFO oslo_service.periodic_task [req-2d4cb998-9db5-42f1-8e5c-d137d775b13b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.618 1196339 INFO oslo_service.periodic_task [req-9ae5e671-154c-46f5-8e0a-8532629a65c6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.620 1196357 INFO oslo_service.periodic_task [req-9bf2ac6e-e2cc-47c1-95b4-9bcd25aadf43 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.618 1196347 INFO oslo_service.periodic_task [req-edf63a82-0884-4952-8536-c7a852a4b3e5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.630 1196315 INFO oslo_service.periodic_task [req-9630ac7e-82ba-4710-885f-e773c2473372 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.640 1196299 INFO oslo_service.periodic_task [req-95529b7e-fe67-4e68-ab23-8d01dac30c70 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.666 1196311 INFO oslo_service.periodic_task [req-fe747c8c-74be-427f-b448-429da6e40158 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.674 1196313 INFO oslo_service.periodic_task [req-a46e5f7d-ad1c-40b1-99de-cc36c065323f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.683 1196351 INFO oslo_service.periodic_task [req-f3ae1a86-3f64-4211-ba76-7e49c426c8f6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.711 1196360 INFO oslo_service.periodic_task [req-dd3970c9-4bb3-4f0f-83f6-65feccb27019 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.786 1196349 INFO oslo_service.periodic_task [req-2a58c846-4481-4e2e-8bc6-b35960f41ce9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:15.831 1196364 INFO oslo_service.periodic_task [req-41702b45-1f88-4118-a421-b3a9151c403e - - - - -] 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.640741s] ... ok
{6} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.383997s] ... ok
{12} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.417101s] ... ok
{9} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.450115s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.487691s] ... ok
{10} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.515300s] ... ok
{7} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.384210s] ... ok
{8} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.469700s] ... ok
{11} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.551100s] ... ok
{11} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [0.315796s] ... ok
{18} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [3.181688s] ... ok
{14} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [3.195481s] ... ok
{12} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [0.940051s] ... ok
{19} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{3} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [3.823478s] ... ok
{27} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.654299s] ... ok
{4} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [3.815565s] ... ok
{28} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.846066s] ... ok
{33} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [3.994341s] ... ok
{31} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [4.039391s] ... ok
{42} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.199636s] ... ok
{39} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [4.441408s] ... ok
{50} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [4.964813s] ... ok
{51} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [4.922420s] ... ok
{53} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [4.849410s] ... ok
{44} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.185823s] ... ok
{26} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [5.300590s] ... ok
{47} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [5.137091s] ... ok
{46} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [5.207833s] ... ok
{25} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.217113s] ... ok
{52} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.411463s] ... ok
{38} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.532355s] ... ok
{40} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.476239s] ... ok
{43} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.535518s] ... ok
{35} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [5.979233s] ... ok
{55} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [5.282374s] ... ok
{30} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.795879s] ... ok
{21} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [6.454560s] ... ok
{17} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [6.437244s] ... ok
{16} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.621141s] ... ok
{37} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [6.456827s] ... ok
{45} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [6.457805s] ... ok
{20} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [6.756472s] ... ok
{23} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [6.426151s] ... ok
{54} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [6.524861s] ... ok
{36} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [6.619524s] ... ok
{32} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [6.941290s] ... ok
{29} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [6.795427s] ... ok
{49} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [7.000551s] ... ok
{48} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [6.925574s] ... ok
{41} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [7.092080s] ... ok
{28} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [3.519465s] ... ok
{34} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [7.379016s] ... ok
{13} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [7.451292s] ... ok
{18} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [4.516248s] ... ok
{24} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [7.634352s] ... ok
{7} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [5.149965s] ... ok
{44} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [2.683615s] ... ok
{22} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [7.972087s] ... ok
{42} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [3.772886s] ... ok
{19} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [4.742197s] ... ok
{11} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [5.192429s] ... ok
{14} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [5.204968s] ... ok
{33} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [4.409446s] ... ok
{38} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [2.893158s] ... ok
{2} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [7.269518s] ... ok
{51} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [3.659392s] ... ok
{15} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [9.036987s] ... ok
{0} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.226439s] ... ok
{9} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [6.817197s] ... ok
{27} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [5.527084s] ... ok
{24} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [1.655145s] ... ok
{17} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [3.021041s] ... ok
{1} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [9.578992s] ... ok
{8} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [6.839061s] ... ok
{39} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [5.299202s] ... ok
{49} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [2.493505s] ... ok
{47} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [4.429930s] ... ok
{16} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.318907s] ... ok
{50} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.754398s] ... ok
{21} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.512735s] ... ok
{0} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [0.932950s] ... ok
{31} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [5.686277s] ... ok
{25} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [4.592525s] ... ok
{37} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [3.490231s] ... ok
{20} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [3.438947s] ... ok
{13} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [2.609586s] ... ok
{53} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [5.026233s] ... ok
{5} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [7.698223s] ... ok
{10} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [7.728469s] ... ok
{6} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.924457s] ... ok
{35} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [4.374976s] ... ok
{40} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [4.791744s] ... ok
{46} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [5.098583s] ... ok
{30} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.487799s] ... ok
{36} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.823598s] ... ok
{13} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.474881s] ... ok
{43} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [4.844774s] ... ok
{12} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [7.327889s] ... ok
{3} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [7.097020s] ... ok
{23} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [4.041840s] ... ok
{1} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.465550s] ... ok
{54} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [4.384137s] ... ok
{14} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [2.742239s] ... ok
{34} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [3.842619s] ... ok
{45} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [4.842994s] ... ok
{4} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [7.633556s] ... ok
{52} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [5.902619s] ... ok
{22} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [3.633184s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "security_group_instance_association", "security_groups" and FROM element "instances". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{32} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.721740s] ... ok
{15} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [2.784811s] ... ok
{41} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [4.307640s] ... ok
{26} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.506545s] ... ok
{55} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [5.825664s] ... ok
{29} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.074165s] ... ok
{48} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [5.334023s] ... ok
======
Totals
======
Ran: 116 tests in 12.8864 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 560.9282 sec.
==============
Worker Balance
==============
- Worker 0 (2 tests) => 0:00:10.161774
- Worker 1 (2 tests) => 0:00:11.046873
- Worker 2 (2 tests) => 0:00:08.912632
- Worker 3 (2 tests) => 0:00:10.921739
- Worker 4 (2 tests) => 0:00:11.450062
- Worker 5 (2 tests) => 0:00:10.188783
- Worker 6 (2 tests) => 0:00:10.311349
- Worker 7 (2 tests) => 0:00:07.535939
- Worker 8 (2 tests) => 0:00:09.311524
- Worker 9 (2 tests) => 0:00:09.270404
- Worker 10 (2 tests) => 0:00:10.246460
- Worker 11 (3 tests) => 0:00:08.063703
- Worker 12 (3 tests) => 0:00:10.689296
- Worker 13 (3 tests) => 0:00:10.539317
- Worker 14 (3 tests) => 0:00:11.145287
- Worker 15 (2 tests) => 0:00:11.823799
- Worker 16 (2 tests) => 0:00:09.942186
- Worker 17 (2 tests) => 0:00:09.460420
- Worker 18 (2 tests) => 0:00:07.698908
- Worker 19 (2 tests) => 0:00:08.163980
- Worker 20 (2 tests) => 0:00:10.196714
- Worker 21 (2 tests) => 0:00:09.969107
- Worker 22 (2 tests) => 0:00:11.607559
- Worker 23 (2 tests) => 0:00:10.469477
- Worker 24 (2 tests) => 0:00:09.290777
- Worker 25 (2 tests) => 0:00:09.810987
- Worker 26 (2 tests) => 0:00:11.808294
- Worker 27 (2 tests) => 0:00:09.183271
- Worker 28 (2 tests) => 0:00:07.367994
- Worker 29 (2 tests) => 0:00:11.872398
- Worker 30 (2 tests) => 0:00:10.284874
- Worker 31 (2 tests) => 0:00:09.727630
- Worker 32 (2 tests) => 0:00:11.664707
- Worker 33 (2 tests) => 0:00:08.405296
- Worker 34 (2 tests) => 0:00:11.223103
- Worker 35 (2 tests) => 0:00:10.355801
- Worker 36 (2 tests) => 0:00:10.445091
- Worker 37 (2 tests) => 0:00:09.948412
- Worker 38 (2 tests) => 0:00:08.427355
- Worker 39 (2 tests) => 0:00:09.741306
- Worker 40 (2 tests) => 0:00:10.269702
- Worker 41 (2 tests) => 0:00:11.401620
- Worker 42 (2 tests) => 0:00:07.973806
- Worker 43 (2 tests) => 0:00:10.384171
- Worker 44 (2 tests) => 0:00:07.870637
- Worker 45 (2 tests) => 0:00:11.302082
- Worker 46 (2 tests) => 0:00:10.308849
- Worker 47 (2 tests) => 0:00:09.569293
- Worker 48 (2 tests) => 0:00:12.261002
- Worker 49 (2 tests) => 0:00:09.494854
- Worker 50 (2 tests) => 0:00:09.721358
- Worker 51 (2 tests) => 0:00:08.582971
- Worker 52 (2 tests) => 0:00:11.315569
- Worker 53 (2 tests) => 0:00:09.878961
- Worker 54 (2 tests) => 0:00:10.910711
- Worker 55 (2 tests) => 0:00:11.110137
functional-py39 run-test: commands[1] | stestr slowest
Test id Runtime (s)
------------------------------------------------------------------------------------------------------------------------------------------------------ -----------
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 9.579
nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid 9.226
nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change 9.037
nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute 7.972
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.924
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False 7.728
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True 7.698
nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags 7.634
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True 7.634
nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate 7.451
__________________________________________________________________________ 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@1aa89f0ed17b83ace41cfc420b4b70c40c9703df#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.limit==1.5.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='2431940255'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
2022-03-16 12:06:47.395 1196890 INFO oslo_service.periodic_task [req-2319dc4f-d0f5-4820-9106-235abac25342 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.488 1196904 INFO oslo_service.periodic_task [req-278001d9-f1ff-4418-b8d2-9007422ff50b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.497 1196894 INFO oslo_service.periodic_task [req-ebf8d1b1-5719-417c-9130-7c6de9ba94bf - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.498 1196892 INFO oslo_service.periodic_task [req-4f78c04e-aff4-4d76-ab1c-5ca1838d974d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.571 1196902 INFO oslo_service.periodic_task [req-e877e587-89a5-4fbd-8fb2-8d68c76df3af - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.597 1196940 INFO oslo_service.periodic_task [req-f4dfa2a5-0fef-4b8e-876c-3de0b8b839cc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.662 1196900 INFO oslo_service.periodic_task [req-b8d15ca3-9de2-4985-b6f0-b007ddc72334 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.662 1196914 INFO oslo_service.periodic_task [req-a6b734e9-795b-46b5-b8a2-ace8a572fe55 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.671 1196910 INFO oslo_service.periodic_task [req-625c1c52-7765-4ee7-9fdb-7f13aa75784b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.671 1196908 INFO oslo_service.periodic_task [req-d12e5778-7d3f-4e80-ade9-4ceff664d6c3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.681 1196928 INFO oslo_service.periodic_task [req-6a87b29d-4ce2-4e49-83da-de9f4e076b9d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.679 1196922 INFO oslo_service.periodic_task [req-fb62370c-db79-453a-9531-92e6573d9a5d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.673 1196930 INFO oslo_service.periodic_task [req-11561774-0dc3-4813-9769-78fcd92bc076 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.740 1196946 INFO oslo_service.periodic_task [req-bfed58d4-9fff-4b25-992a-b946f0a6ecb4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.763 1196918 INFO oslo_service.periodic_task [req-d2273492-50cf-4651-98a7-9a7228e6dc6c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.764 1196926 INFO oslo_service.periodic_task [req-6e55f7da-8c2d-4459-9a90-52cee67b2d2b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.777 1196979 INFO oslo_service.periodic_task [req-395061fa-d194-4014-9cee-a801f0b7c614 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.782 1196936 INFO oslo_service.periodic_task [req-0f556b9e-3829-4334-9756-cccf2a5972ac - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.808 1196968 INFO oslo_service.periodic_task [req-7baacb50-b0b5-452a-a2fa-31331c09c453 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.811 1197015 INFO oslo_service.periodic_task [req-6a65684e-f21b-46a5-b69a-205414f42b61 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.813 1196942 INFO oslo_service.periodic_task [req-5271523e-888a-4456-83c9-72e2fb2302fc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.827 1196906 INFO oslo_service.periodic_task [req-0f34aa45-9efe-4ec5-aa8d-d40417583241 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.835 1196938 INFO oslo_service.periodic_task [req-ff4227a7-27a2-464a-a894-71cbf8409aff - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.843 1197030 INFO oslo_service.periodic_task [req-c53fc63c-40db-46e1-bf13-2e96d4ba27e6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.853 1196920 INFO oslo_service.periodic_task [req-44fedaea-cf70-4e90-8bb6-01cbbc4275e5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.865 1196944 INFO oslo_service.periodic_task [req-c81c79d5-fb9d-42e7-beb9-b35f766db3d6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.871 1196998 INFO oslo_service.periodic_task [req-40f17acb-c38b-4ace-8132-c0c32a4beaa3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.885 1196898 INFO oslo_service.periodic_task [req-8a6bfd1d-de40-4093-a341-ee7e07d0f4c4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.899 1197068 INFO oslo_service.periodic_task [req-a601cc38-d039-4f4b-bc1a-ef70ad6c0882 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.908 1197019 INFO oslo_service.periodic_task [req-6b98635b-a2fc-4ff9-92f5-e5b89a35bb9b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.946 1197007 INFO oslo_service.periodic_task [req-cc51a33f-fbce-4ac5-bc3f-df5fcd2e1ba9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.975 1196924 INFO oslo_service.periodic_task [req-79472feb-522b-4e08-b025-1f1b48d73bb8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.988 1197026 INFO oslo_service.periodic_task [req-41d3ed45-aa7a-46ed-8933-a38aaf12c2e1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.994 1196912 INFO oslo_service.periodic_task [req-08aca369-ae69-40cd-a068-5cab45b80acc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:47.998 1197061 INFO oslo_service.periodic_task [req-8034ce2d-6bae-477b-a9c5-554aca1aad33 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:48.004 1196975 INFO oslo_service.periodic_task [req-af857411-e110-4537-91cf-d558d8a738e4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:48.006 1196948 INFO oslo_service.periodic_task [req-6774d1ca-1baf-4f32-ba23-fa8d06e482a7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:48.007 1197023 INFO oslo_service.periodic_task [req-c377cc10-0341-4ff5-84ed-1cefe346bcfb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:48.038 1196916 INFO oslo_service.periodic_task [req-cdf5a9d4-db14-482f-b031-ea6dd60f668c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:48.044 1197074 INFO oslo_service.periodic_task [req-3a6ae5cb-8aa6-4e92-972a-a3386535a801 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:48.053 1196934 INFO oslo_service.periodic_task [req-2248ba52-884e-418f-af98-33cdbb52fd24 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:48.097 1197057 INFO oslo_service.periodic_task [req-acf00777-d2ee-4c76-b37c-2d77ed299840 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:48.115 1196932 INFO oslo_service.periodic_task [req-5c3f39ea-bcae-49e0-b778-dc91a264d97f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:48.122 1197044 INFO oslo_service.periodic_task [req-628f0fb1-5fc0-410c-b54b-71f313c9796a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:48.122 1196896 INFO oslo_service.periodic_task [req-925aefff-3e9d-444d-b479-436963aa8541 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:48.127 1197050 INFO oslo_service.periodic_task [req-5525aec5-85c2-406c-a5c1-561883b979da - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:48.137 1196983 INFO oslo_service.periodic_task [req-031b054c-c718-49f8-82de-246136ee507f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:48.165 1196987 INFO oslo_service.periodic_task [req-0f338e13-5da9-4c23-9f37-803c43d8dec2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:48.165 1197003 INFO oslo_service.periodic_task [req-3d553169-b0fd-4558-b33b-35f6c7b8c91e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:48.180 1197011 INFO oslo_service.periodic_task [req-b4add2a7-032b-4f58-9715-4584c59b3664 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:48.205 1197040 INFO oslo_service.periodic_task [req-f8966cca-fddc-44cb-a9c5-61a9ba40ecbb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:48.345 1196972 INFO oslo_service.periodic_task [req-4e48107c-96c8-45d9-8d0e-40aae9c0abf6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:48.353 1196995 INFO oslo_service.periodic_task [req-4a1ad499-a60c-4841-97f7-5e1642f73e9f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:48.451 1197054 INFO oslo_service.periodic_task [req-637ba261-06c4-47f9-8a15-ec1c7be6dda9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:48.721 1197035 INFO oslo_service.periodic_task [req-85e88fff-0f31-4306-aa7e-45db3937ee39 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:06:49.015 1196991 INFO oslo_service.periodic_task [req-2d3fabf9-cba9-4abe-9cbb-5d12548568ec - - - - -] 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.678317s] ... ok
{33} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [1.638304s] ... ok
{7} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.489290s] ... ok
{6} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.467296s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.414192s] ... ok
{10} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.464334s] ... ok
{4} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.388169s] ... ok
{8} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.488934s] ... ok
{11} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.452397s] ... ok
{19} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [2.918166s] ... ok
{3} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.455634s] ... ok
{2} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.679702s] ... ok
{18} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [3.400994s] ... ok
{34} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.973779s] ... ok
{27} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [4.284265s] ... ok
{35} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [4.215771s] ... ok
{13} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [4.379679s] ... ok
{38} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.649818s] ... ok
{36} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.598819s] ... ok
{55} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [4.675987s] ... ok
{54} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [4.849441s] ... ok
{28} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.065177s] ... ok
{44} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [4.939403s] ... ok
{40} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.297779s] ... ok
{29} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.460115s] ... ok
{49} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.339064s] ... ok
{39} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.400563s] ... ok
{45} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.594105s] ... ok
{23} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [5.888827s] ... ok
{51} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [5.308546s] ... ok
{25} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [6.330132s] ... ok
{53} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [5.944168s] ... ok
{37} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.618695s] ... ok
{20} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [6.319192s] ... ok
{33} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [4.591920s] ... ok
{26} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [6.202968s] ... ok
{31} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [5.678865s] ... ok
{46} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [6.365877s] ... ok
{30} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [6.638474s] ... ok
{21} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [6.416424s] ... ok
{16} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [6.860718s] ... ok
{24} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [6.780887s] ... ok
{41} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [6.446877s] ... ok
{22} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.671151s] ... ok
{15} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [6.929700s] ... ok
{9} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [7.272180s] ... ok
{14} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [7.237246s] ... ok
{43} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [7.201861s] ... ok
{7} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [5.231208s] ... ok
{17} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [7.294923s] ... ok
{50} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [7.201809s] ... ok
{52} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [7.266306s] ... ok
{47} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [6.681291s] ... ok
{42} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [7.655311s] ... ok
{37} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.558665s] ... ok
{36} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [2.998337s] ... ok
{21} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{44} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [2.887954s] ... ok
{27} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [3.765329s] ... ok
{32} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [7.899483s] ... ok
{48} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [7.758933s] ... ok
{55} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [3.261576s] ... ok
{34} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [3.920852s] ... ok
{30} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [1.592256s] ... ok
{10} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [5.911052s] ... ok
{12} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [8.391151s] ... ok
{31} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [2.123917s] ... ok
{20} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [2.726716s] ... ok
{36} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [1.154256s] ... ok
{3} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [6.285532s] ... ok
{34} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.953199s] ... ok
{29} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [3.522716s] ... ok
{0} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [9.816979s] ... ok
{5} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [7.159445s] ... ok
{16} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [2.752923s] ... ok
{2} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [6.197981s] ... ok
{6} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [7.379717s] ... ok
{19} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [6.870248s] ... ok
{46} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [3.274091s] ... ok
{14} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [2.547042s] ... ok
{28} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [4.781461s] ... ok
{11} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [7.251680s] ... ok
{9} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [2.801905s] ... ok
{1} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [8.616530s] ... ok
{15} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [3.070678s] ... ok
{4} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.642442s] ... ok
{35} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [5.555150s] ... ok
{39} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [4.400490s] ... ok
{0} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [0.772766s] ... ok
{54} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [5.238461s] ... ok
{40} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [4.785048s] ... ok
{49} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [4.591024s] ... ok
{22} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [3.434485s] ... ok
{26} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [4.161768s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "security_group_instance_association", "security_groups" and FROM element "instances". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{38} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [5.674413s] ... ok
{24} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.771158s] ... ok
{8} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [8.096607s] ... ok
{45} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.954094s] ... ok
{17} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [3.285545s] ... ok
{18} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.381066s] ... ok
{51} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [5.008275s] ... ok
{12} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [2.792989s] ... ok
{33} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [4.884163s] ... ok
{41} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [4.607830s] ... ok
{32} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.384073s] ... ok
{23} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [5.655454s] ... ok
{13} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [6.898662s] ... ok
{42} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [3.926812s] ... ok
{37} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.997911s] ... ok
{43} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [4.547666s] ... ok
{50} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.355020s] ... ok
{52} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [4.563667s] ... ok
{53} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [6.161773s] ... ok
{25} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.217029s] ... ok
{48} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.408093s] ... ok
{47} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [4.985899s] ... ok
======
Totals
======
Ran: 116 tests in 13.0059 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 563.2705 sec.
==============
Worker Balance
==============
- Worker 0 (2 tests) => 0:00:10.592588
- Worker 1 (2 tests) => 0:00:10.297187
- Worker 2 (2 tests) => 0:00:09.878603
- Worker 3 (2 tests) => 0:00:08.743583
- Worker 4 (2 tests) => 0:00:10.034805
- Worker 5 (2 tests) => 0:00:09.576354
- Worker 6 (2 tests) => 0:00:09.849876
- Worker 7 (2 tests) => 0:00:07.722256
- Worker 8 (2 tests) => 0:00:10.588372
- Worker 9 (2 tests) => 0:00:10.076385
- Worker 10 (2 tests) => 0:00:08.377710
- Worker 11 (2 tests) => 0:00:09.706275
- Worker 12 (2 tests) => 0:00:11.186872
- Worker 13 (2 tests) => 0:00:11.279513
- Worker 14 (2 tests) => 0:00:09.785853
- Worker 15 (2 tests) => 0:00:10.001831
- Worker 16 (2 tests) => 0:00:09.615125
- Worker 17 (2 tests) => 0:00:10.581927
- Worker 18 (2 tests) => 0:00:10.782999
- Worker 19 (2 tests) => 0:00:09.791171
- Worker 20 (2 tests) => 0:00:09.046804
- Worker 21 (2 tests) => 0:00:07.620509
- Worker 22 (2 tests) => 0:00:10.106953
- Worker 23 (2 tests) => 0:00:11.545134
- Worker 24 (2 tests) => 0:00:10.554099
- Worker 25 (2 tests) => 0:00:12.549189
- Worker 26 (2 tests) => 0:00:10.366346
- Worker 27 (2 tests) => 0:00:08.051797
- Worker 28 (2 tests) => 0:00:09.848285
- Worker 29 (2 tests) => 0:00:08.983810
- Worker 30 (2 tests) => 0:00:08.231960
- Worker 31 (2 tests) => 0:00:07.803715
- Worker 32 (2 tests) => 0:00:11.286568
- Worker 33 (3 tests) => 0:00:11.118206
- Worker 34 (3 tests) => 0:00:08.850102
- Worker 35 (2 tests) => 0:00:09.771993
- Worker 36 (3 tests) => 0:00:07.754799
- Worker 37 (3 tests) => 0:00:11.178589
- Worker 38 (2 tests) => 0:00:10.325827
- Worker 39 (2 tests) => 0:00:09.803119
- Worker 40 (2 tests) => 0:00:10.084706
- Worker 41 (2 tests) => 0:00:11.055771
- Worker 42 (2 tests) => 0:00:11.583576
- Worker 43 (2 tests) => 0:00:11.751060
- Worker 44 (2 tests) => 0:00:07.828908
- Worker 45 (2 tests) => 0:00:10.549803
- Worker 46 (2 tests) => 0:00:09.641064
- Worker 47 (2 tests) => 0:00:11.668113
- Worker 48 (2 tests) => 0:00:12.168947
- Worker 49 (2 tests) => 0:00:09.930891
- Worker 50 (2 tests) => 0:00:11.558298
- Worker 51 (2 tests) => 0:00:10.319308
- Worker 52 (2 tests) => 0:00:11.832190
- Worker 53 (2 tests) => 0:00:12.108543
- Worker 54 (2 tests) => 0:00:10.089340
- Worker 55 (2 tests) => 0:00:07.938255
functional-py39 run-test: commands[1] | stestr slowest
Test id Runtime (s)
------------------------------------------------------------------------------------------------------------------------------------------- -----------
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 9.817
nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid 8.617
nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate 8.391
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True 8.097
nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules 7.899
nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True 7.759
nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 7.655
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.642
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False 7.381
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True 7.380
__________________________________________________________________________ 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@1aa89f0ed17b83ace41cfc420b4b70c40c9703df#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.limit==1.5.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='812463912'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
2022-03-16 12:07:20.090 1197715 INFO oslo_service.periodic_task [req-89af53dd-4d69-4786-8f0d-c718a0caa74b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.150 1197711 INFO oslo_service.periodic_task [req-0b17473c-891b-4074-8a3b-12897e5fefab - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.184 1197701 INFO oslo_service.periodic_task [req-c4c4bbcf-1f89-4687-acfc-98bceccd8833 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.222 1197709 INFO oslo_service.periodic_task [req-77fff7c0-151b-49a7-bb0d-ba36606804c4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.227 1197683 INFO oslo_service.periodic_task [req-81e7c3a0-ef3e-4369-82c6-02d4e3c857b8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.244 1197743 INFO oslo_service.periodic_task [req-8937a584-c4d1-49eb-a588-931480fab2fc - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.245 1197685 INFO oslo_service.periodic_task [req-5b2e52a7-406d-4b63-98fa-e8ebac1e5872 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.274 1197671 INFO oslo_service.periodic_task [req-0915f19f-7873-468d-9b82-c71f2183f8ca - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.275 1197699 INFO oslo_service.periodic_task [req-cfc383be-d871-4822-b1d9-99f706fba74a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.290 1197745 INFO oslo_service.periodic_task [req-3e0ca2f9-3cdd-4ce2-ade7-05abbfefc021 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.335 1197727 INFO oslo_service.periodic_task [req-e74061e1-8572-4c05-9c38-ffc586839bb3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.347 1197723 INFO oslo_service.periodic_task [req-61c8a6d0-be9a-457d-b0e2-5ecf941b7232 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.384 1197675 INFO oslo_service.periodic_task [req-26544450-127a-4881-bee3-259d152f637e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.385 1197717 INFO oslo_service.periodic_task [req-406461f4-b50e-42ba-9369-4565a82e70ee - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.403 1197735 INFO oslo_service.periodic_task [req-8e863c2f-fa9e-4d45-bd25-b6316bf29465 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.418 1197697 INFO oslo_service.periodic_task [req-e33f71f2-a96c-468b-9671-bed0ecb5e290 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.422 1197691 INFO oslo_service.periodic_task [req-9432aa8b-cd2a-40a4-8a1b-09ad7d8a4117 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.458 1197703 INFO oslo_service.periodic_task [req-0b8bbcbd-62a7-4549-bd43-ae76fb8039f1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.463 1197737 INFO oslo_service.periodic_task [req-3a082e64-52be-436b-844a-1e13b0e1ee51 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.474 1197673 INFO oslo_service.periodic_task [req-c960c469-7ea1-4805-9263-ac55e0b27ddd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.476 1197729 INFO oslo_service.periodic_task [req-093790f1-93cd-4366-b064-200cbefd9b0a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.494 1197753 INFO oslo_service.periodic_task [req-4adf1d2b-45a2-4015-b9e6-a7e900cd9229 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.497 1197777 INFO oslo_service.periodic_task [req-a6f54c0e-6e2f-4b3d-8a43-bfb4a9a405c9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.502 1197755 INFO oslo_service.periodic_task [req-2dfa7b61-544b-4e9a-88ed-394e6a5e8514 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.503 1197761 INFO oslo_service.periodic_task [req-8e1c2597-c42b-4a24-8212-c2d005cc4521 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.518 1197751 INFO oslo_service.periodic_task [req-9ef959cb-8794-4346-998d-7f3742a64035 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.526 1197739 INFO oslo_service.periodic_task [req-10bf5009-4c9a-4062-bdce-657b92f58610 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.518 1197695 INFO oslo_service.periodic_task [req-34f87e9b-ae42-437c-b405-9954f60dbdbf - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.536 1197757 INFO oslo_service.periodic_task [req-1e98cdec-8837-4382-81b8-3831f78f99b1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.528 1197725 INFO oslo_service.periodic_task [req-ff369df7-284e-4e50-98e1-6f9166faca01 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.522 1197693 INFO oslo_service.periodic_task [req-709eeefc-9261-4104-8f23-e55c197379f7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.547 1197679 INFO oslo_service.periodic_task [req-1cea1bc2-e2c2-471c-aef9-4edd0ccf847e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.551 1197741 INFO oslo_service.periodic_task [req-25be07c2-91ea-4a6e-a1c4-69b17c920ac9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.579 1197749 INFO oslo_service.periodic_task [req-39814378-856e-42f0-9f15-c3c8e361fad3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.584 1197747 INFO oslo_service.periodic_task [req-78a9bc77-f533-4e8d-ae93-acef6bd0b591 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.596 1197721 INFO oslo_service.periodic_task [req-e0fe6e53-309c-4ca3-8719-104f625be311 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.604 1197773 INFO oslo_service.periodic_task [req-0a7a9e2a-7f7c-4620-a5e8-5eb00b4a977d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.611 1197765 INFO oslo_service.periodic_task [req-b3bbddb8-8089-46b6-b871-7d50968bbc51 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.620 1197687 INFO oslo_service.periodic_task [req-9e0c1425-2e38-4d48-b923-33104da8e1f8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.632 1197713 INFO oslo_service.periodic_task [req-a0bd510e-3008-4b76-a301-27779cfe353b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.646 1197719 INFO oslo_service.periodic_task [req-87b8c492-3106-4205-a413-1a472cd61741 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.663 1197705 INFO oslo_service.periodic_task [req-cd1cf624-6ca6-4e6a-9aff-a4a37b4467bf - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.661 1197775 INFO oslo_service.periodic_task [req-5a34da4d-33dd-4ec6-8a0d-507e962fccc7 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.664 1197707 INFO oslo_service.periodic_task [req-8d852468-56c5-4683-918a-f04db4469a54 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.677 1197771 INFO oslo_service.periodic_task [req-967f54cc-cde4-4e1d-929f-92d353614a97 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.673 1197681 INFO oslo_service.periodic_task [req-251a231b-f68e-404c-85bb-3a6fb412bc37 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.672 1197780 INFO oslo_service.periodic_task [req-54be108d-8bc5-4af2-b7ec-da9061b75b91 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.684 1197769 INFO oslo_service.periodic_task [req-93967882-e023-4638-b27e-e8c048f34f51 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.700 1197677 INFO oslo_service.periodic_task [req-91e2616e-6d0e-4aea-8d8b-ff22147b60a9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.701 1197689 INFO oslo_service.periodic_task [req-79a1d7f9-5080-4964-b181-bc6b2ff482cd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.721 1197733 INFO oslo_service.periodic_task [req-cd591192-7525-41ee-919b-d11e8a6bac6e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.775 1197782 INFO oslo_service.periodic_task [req-e50a63e5-6dce-4a01-b721-57862f7863ca - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.916 1197731 INFO oslo_service.periodic_task [req-4db9dee5-0264-44bb-9e6a-83d5eeb9b6bb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.924 1197767 INFO oslo_service.periodic_task [req-f22849f6-fa1b-4e4e-b2d9-1be7eec5c60d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.924 1197759 INFO oslo_service.periodic_task [req-c4d4a36b-6be9-4d66-82d1-9546b8da06bd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:20.998 1197763 INFO oslo_service.periodic_task [req-7a7d2016-dc79-450c-acc4-8b04a8a188ba - - - - -] 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.701526s] ... ok
{3} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.725822s] ... ok
{6} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.398954s] ... ok
{7} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.438317s] ... ok
{10} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.458757s] ... ok
{11} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.482738s] ... ok
{8} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.390900s] ... ok
{12} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.529620s] ... ok
{19} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [2.937750s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.493389s] ... ok
{9} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.508822s] ... ok
{26} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [3.143359s] ... ok
{4} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [3.786965s] ... ok
{39} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.819401s] ... ok
{35} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.891864s] ... ok
{38} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [3.892553s] ... ok
{30} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.573661s] ... ok
{29} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [4.102276s] ... ok
{49} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.040011s] ... ok
{41} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [4.460280s] ... ok
{22} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [4.983260s] ... ok
{18} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [4.410102s] ... ok
{53} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [4.627932s] ... ok
{50} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [4.671979s] ... ok
{13} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [4.946710s] ... ok
{20} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.320234s] ... ok
{36} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [5.392725s] ... ok
{55} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [4.908291s] ... ok
{52} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.048828s] ... ok
{45} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.364304s] ... ok
{43} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.333627s] ... ok
{33} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.439330s] ... ok
{48} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [4.968819s] ... ok
{32} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [5.539875s] ... ok
{42} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.570966s] ... ok
{47} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.487352s] ... ok
{46} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.469532s] ... ok
{13} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [1.137612s] ... ok
{23} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [6.137363s] ... ok
{28} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [6.535827s] ... ok
{25} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [6.314471s] ... ok
{24} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.618119s] ... ok
{39} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [2.957602s] ... ok
{15} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [7.296779s] ... ok
{16} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [7.079035s] ... ok
{49} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [2.927474s] ... ok
{27} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [7.140342s] ... ok
{21} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [7.055969s] ... ok
{40} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [7.188000s] ... ok
{37} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [7.471331s] ... ok
{14} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [7.500608s] ... ok
{51} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [7.217809s] ... ok
{54} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [7.197005s] ... ok
{44} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [7.104951s] ... ok
{10} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [5.164674s] ... ok
{6} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [5.524952s] ... ok
{26} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [4.623932s] ... ok
{30} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [3.907177s] ... ok
{5} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [5.306619s] ... ok
{12} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [5.698650s] ... ok
{31} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [8.164927s] ... ok
{38} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [4.453068s] ... ok
{11} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [5.919669s] ... ok
{29} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [4.542847s] ... ok
{36} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.507249s] ... ok
{2} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [7.135577s] ... ok
{10} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [1.284699s] ... ok
{22} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [4.359735s] ... ok
{34} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [8.936428s] ... ok
{23} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [3.158488s] ... ok
{33} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [3.938038s] ... ok
{17} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [9.192885s] ... ok
{0} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [9.666163s] ... ok
{1} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [9.467180s] ... ok
{19} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [6.791202s] ... ok
{52} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [4.268264s] ... ok
{3} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [7.587027s] ... ok
{16} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [2.529509s] ... ok
{41} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [5.146212s] ... ok
{47} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [4.033973s] ... ok
{18} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [5.128008s] ... ok
{4} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [6.050621s] ... ok
{15} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [2.978789s] ... ok
{7} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.791293s] ... ok
{35} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [6.061276s] ... ok
{55} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.855537s] ... ok
{25} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.645352s] ... ok
{24} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [3.298115s] ... ok
{11} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{12} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.811462s] ... ok
{43} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.711354s] ... ok
{50} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [5.252038s] ... ok
{45} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [4.761283s] ... ok
{42} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [4.557196s] ... ok
{9} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [7.437688s] ... ok
{21} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [3.011209s] ... ok
{8} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.682596s] ... ok
{53} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [5.650195s] ... ok
{3} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.805324s] ... ok
{27} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [3.531944s] ... ok
{46} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [4.750712s] ... ok
{14} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.503958s] ... ok
{28} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [4.505966s] ... ok
{48} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [5.552653s] ... ok
{37} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [3.975817s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "security_group_instance_association", "security_groups" and FROM element "instances". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{1} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [1.819545s] ... ok
{34} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [2.512460s] ... ok
{51} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [4.470251s] ... ok
{44} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [4.288262s] ... ok
{31} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [3.550659s] ... ok
{20} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [7.085818s] ... ok
{17} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [2.765974s] ... ok
{40} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.946238s] ... ok
{54} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [4.867811s] ... ok
{32} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [7.019057s] ... ok
{13} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [6.599036s] ... ok
======
Totals
======
Ran: 116 tests in 13.0360 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 560.3105 sec.
==============
Worker Balance
==============
- Worker 0 (1 tests) => 0:00:09.666163
- Worker 1 (2 tests) => 0:00:11.288632
- Worker 2 (2 tests) => 0:00:08.839234
- Worker 3 (3 tests) => 0:00:10.122024
- Worker 4 (2 tests) => 0:00:09.838541
- Worker 5 (2 tests) => 0:00:07.802896
- Worker 6 (2 tests) => 0:00:07.926684
- Worker 7 (2 tests) => 0:00:10.231795
- Worker 8 (2 tests) => 0:00:10.076276
- Worker 9 (2 tests) => 0:00:09.949449
- Worker 10 (3 tests) => 0:00:08.912401
- Worker 11 (3 tests) => 0:00:10.031680
- Worker 12 (3 tests) => 0:00:10.045039
- Worker 13 (3 tests) => 0:00:12.686067
- Worker 14 (2 tests) => 0:00:11.006896
- Worker 15 (2 tests) => 0:00:10.277108
- Worker 16 (2 tests) => 0:00:09.610005
- Worker 17 (2 tests) => 0:00:11.960127
- Worker 18 (2 tests) => 0:00:09.539175
- Worker 19 (2 tests) => 0:00:09.730294
- Worker 20 (2 tests) => 0:00:12.408527
- Worker 21 (2 tests) => 0:00:10.068173
- Worker 22 (2 tests) => 0:00:09.344093
- Worker 23 (2 tests) => 0:00:09.296757
- Worker 24 (2 tests) => 0:00:09.918657
- Worker 25 (2 tests) => 0:00:09.961407
- Worker 26 (2 tests) => 0:00:07.770174
- Worker 27 (2 tests) => 0:00:10.674483
- Worker 28 (2 tests) => 0:00:11.043129
- Worker 29 (2 tests) => 0:00:08.646577
- Worker 30 (2 tests) => 0:00:07.482313
- Worker 31 (2 tests) => 0:00:11.717389
- Worker 32 (2 tests) => 0:00:12.560034
- Worker 33 (2 tests) => 0:00:09.378640
- Worker 34 (2 tests) => 0:00:11.450263
- Worker 35 (2 tests) => 0:00:09.954342
- Worker 36 (2 tests) => 0:00:08.901389
- Worker 37 (2 tests) => 0:00:11.448827
- Worker 38 (2 tests) => 0:00:08.346517
- Worker 39 (2 tests) => 0:00:06.778495
- Worker 40 (2 tests) => 0:00:12.136729
- Worker 41 (2 tests) => 0:00:09.607674
- Worker 42 (2 tests) => 0:00:10.130464
- Worker 43 (2 tests) => 0:00:10.047397
- Worker 44 (2 tests) => 0:00:11.394389
- Worker 45 (2 tests) => 0:00:10.127613
- Worker 46 (2 tests) => 0:00:10.221220
- Worker 47 (2 tests) => 0:00:09.522746
- Worker 48 (2 tests) => 0:00:10.523313
- Worker 49 (2 tests) => 0:00:06.968889
- Worker 50 (2 tests) => 0:00:09.926057
- Worker 51 (2 tests) => 0:00:11.690087
- Worker 52 (2 tests) => 0:00:09.318746
- Worker 53 (2 tests) => 0:00:10.279649
- Worker 54 (2 tests) => 0:00:12.066460
- Worker 55 (2 tests) => 0:00:09.765822
functional-py39 run-test: commands[1] | stestr slowest
Test id Runtime (s)
------------------------------------------------------------------------------------------------------------------------------------------------------ -----------
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 9.666
nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid 9.467
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False 9.193
nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change 8.936
nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute 8.165
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.791
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False 7.683
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True 7.587
nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call 7.501
nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists 7.471
__________________________________________________________________________ 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@1aa89f0ed17b83ace41cfc420b4b70c40c9703df#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.limit==1.5.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='1769655117'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
2022-03-16 12:07:52.415 1198322 INFO oslo_service.periodic_task [req-81320bbb-d0b8-4c67-8d6c-62025551e00e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.494 1198346 INFO oslo_service.periodic_task [req-acffd10e-845a-40ad-9fed-56657a29c683 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.567 1198342 INFO oslo_service.periodic_task [req-1a248283-a350-48a0-8f2c-dbfbd2759491 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.596 1198336 INFO oslo_service.periodic_task [req-6a5b54e6-6961-4d65-9d0e-22ae1de59085 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.623 1198396 INFO oslo_service.periodic_task [req-3fd4ea9b-46b0-4512-b176-b33a01833957 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.630 1198384 INFO oslo_service.periodic_task [req-12818035-5bd8-44e2-8420-c2bf11f71748 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.642 1198352 INFO oslo_service.periodic_task [req-5d760444-4e6c-49ad-af28-feedfa38e745 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.645 1198350 INFO oslo_service.periodic_task [req-e803bae6-a97c-4fd8-9f17-e5eab8088fd6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.673 1198386 INFO oslo_service.periodic_task [req-bedf1b00-2f5e-4f14-9622-c224d2fe31df - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.687 1198358 INFO oslo_service.periodic_task [req-c0235e95-f826-4ba2-bb9c-3e3b8de88feb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.697 1198348 INFO oslo_service.periodic_task [req-d5b61161-fbf3-44f9-a459-7bd98faa9fc3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.702 1198356 INFO oslo_service.periodic_task [req-fe2a2c96-9dd2-4b0c-93bf-29a5535879ad - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.709 1198332 INFO oslo_service.periodic_task [req-d9271a4e-df61-4985-a665-fa35ea81a58f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.719 1198324 INFO oslo_service.periodic_task [req-4a936a1f-195c-49fe-87dc-ab29e7acf4ec - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.742 1198370 INFO oslo_service.periodic_task [req-b333f4a7-467f-4fa8-b3d8-b9f34c1401cd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.780 1198334 INFO oslo_service.periodic_task [req-d66fae9e-5d9b-4d66-8d3c-4d8135894343 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.782 1198368 INFO oslo_service.periodic_task [req-d9d49aae-ffec-4321-8632-d1c7fc4bae84 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.784 1198392 INFO oslo_service.periodic_task [req-5b8ac9d1-4300-49a4-8865-70ed9feac714 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.788 1198400 INFO oslo_service.periodic_task [req-96d4cab6-1871-4800-bcd0-5fd5679e9fec - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.792 1198364 INFO oslo_service.periodic_task [req-f2e8a319-768e-4276-b468-c6aff8ef6340 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.791 1198362 INFO oslo_service.periodic_task [req-b33ad930-f432-4332-8a56-428b1df4c33b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.802 1198328 INFO oslo_service.periodic_task [req-d183df74-f515-484f-aa8e-f743eb61f413 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.797 1198340 INFO oslo_service.periodic_task [req-aa10a73d-63b7-4ee7-a0bd-ac0d6b9d5a77 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.791 1198360 INFO oslo_service.periodic_task [req-22bd4adc-8368-4270-9ab7-322892a79371 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.840 1198390 INFO oslo_service.periodic_task [req-03d98a3f-0606-456c-9f3a-3b72fcd6eafd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.853 1198420 INFO oslo_service.periodic_task [req-b6560668-6f4e-4de8-baf0-ab8e60ef3c89 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.874 1198394 INFO oslo_service.periodic_task [req-f21fb004-c3ea-4ace-b3e4-2c6a99b26cc4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.883 1198366 INFO oslo_service.periodic_task [req-1837f935-06d3-4ddd-af39-e89d597e4c6f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.884 1198344 INFO oslo_service.periodic_task [req-623a774d-4c63-44fe-8e18-7baef3b14a16 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.882 1198374 INFO oslo_service.periodic_task [req-ece22892-58c9-4c32-9f57-322f477aa477 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.920 1198402 INFO oslo_service.periodic_task [req-1fc51522-2eee-4ede-a384-aa9d2275b770 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.920 1198414 INFO oslo_service.periodic_task [req-7bf93d23-d667-42d2-8195-78bdf65eb2e8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.931 1198372 INFO oslo_service.periodic_task [req-9ab9cd68-6bf9-4ae1-bae8-75ff12abf82b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.954 1198388 INFO oslo_service.periodic_task [req-47522a95-8e7a-447e-9254-fcf3b9e9af87 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.954 1198408 INFO oslo_service.periodic_task [req-55eb5315-55e6-45ae-b119-0c38a69e6f68 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.959 1198433 INFO oslo_service.periodic_task [req-60dfa777-c856-4468-9120-047f08f621f3 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.966 1198422 INFO oslo_service.periodic_task [req-5395d060-0af9-4f82-8eed-ae9d458efc80 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:52.995 1198376 INFO oslo_service.periodic_task [req-bbd77dd4-67e9-4b12-97c1-00a4be254eae - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:53.030 1198431 INFO oslo_service.periodic_task [req-944671af-bd1f-4d17-ada1-86ff1f84c9ef - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:53.060 1198426 INFO oslo_service.periodic_task [req-c2cbc726-7494-4ae7-8d5f-f75795e29944 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:53.099 1198326 INFO oslo_service.periodic_task [req-4c8a845a-73b3-4ac4-84a5-d98ae704af3d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:53.117 1198338 INFO oslo_service.periodic_task [req-7ae2d470-97b4-49df-a09c-c08d43255a51 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:53.129 1198412 INFO oslo_service.periodic_task [req-a148e764-6c01-40fe-9a57-22ff99cc26c2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:53.145 1198380 INFO oslo_service.periodic_task [req-c0dec1ab-d7c5-41fd-a2eb-360a2430c4a2 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:53.179 1198382 INFO oslo_service.periodic_task [req-6df5c18b-2490-4b0d-b957-256a84c5029b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:53.194 1198354 INFO oslo_service.periodic_task [req-07316696-0ba1-4a8b-8cf5-a49be0a3e711 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:53.203 1198398 INFO oslo_service.periodic_task [req-1678599f-a511-47ed-b319-c3905a2c30cb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:53.218 1198330 INFO oslo_service.periodic_task [req-9a1f35ae-b1e5-429e-8124-48643a5897f9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:53.278 1198404 INFO oslo_service.periodic_task [req-ddb7b0d2-defb-4eb8-94ae-77462cf20d78 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:53.279 1198410 INFO oslo_service.periodic_task [req-4a971b66-3f34-47ac-a796-1809128a99b4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:53.294 1198418 INFO oslo_service.periodic_task [req-8364bf97-0b8f-40b9-8fda-820e538a09eb - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:53.450 1198378 INFO oslo_service.periodic_task [req-e0e8c426-198f-466f-ae2e-9a70617f7930 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:53.572 1198424 INFO oslo_service.periodic_task [req-1a52aa5f-047d-4f77-8eee-e68f1768fdba - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:53.609 1198406 INFO oslo_service.periodic_task [req-9694e195-b646-4353-96f8-2b2b5d2c8e91 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:53.619 1198416 INFO oslo_service.periodic_task [req-5d68bbb0-d101-4164-a911-7f998b5cecfa - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:07:54.020 1198428 INFO oslo_service.periodic_task [req-c636e12f-0d3d-4977-a4cb-419561465134 - - - - -] 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.730641s] ... ok
{10} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.474977s] ... ok
{7} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.447194s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.407038s] ... ok
{13} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.461804s] ... ok
{6} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.437987s] ... ok
{9} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.394647s] ... ok
{8} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.386291s] ... ok
{4} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.392815s] ... ok
{20} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [3.302507s] ... ok
{16} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [3.048610s] ... ok
{34} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{27} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.502259s] ... ok
{31} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.886989s] ... ok
{32} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [4.095669s] ... ok
{37} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.205478s] ... ok
{30} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.646536s] ... ok
{18} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [4.414285s] ... ok
{29} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [4.078813s] ... ok
{38} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [4.025622s] ... ok
{44} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [4.408198s] ... ok
{32} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.937380s] ... ok
{52} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [4.760252s] ... ok
{49} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.001793s] ... ok
{50} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [4.985025s] ... ok
{21} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [5.285453s] ... ok
{54} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [5.088706s] ... ok
{17} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [5.532420s] ... ok
{11} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [5.385485s] ... ok
{39} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.495070s] ... ok
{24} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [5.678988s] ... ok
{43} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.483790s] ... ok
{33} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.626401s] ... ok
{12} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [6.179578s] ... ok
{41} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.404280s] ... ok
{42} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.290448s] ... ok
{14} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [6.281954s] ... ok
{36} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [6.066122s] ... ok
{35} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [6.179419s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "security_group_instance_association", "security_groups" and FROM element "instances". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{40} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [6.087691s] ... ok
{28} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [5.670166s] ... ok
{33} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [0.554291s] ... ok
{51} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [5.530844s] ... ok
{23} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.503146s] ... ok
{26} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [6.408168s] ... ok
{25} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [6.591594s] ... ok
{15} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [6.938038s] ... ok
{46} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [6.721250s] ... ok
{47} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [6.157618s] ... ok
{45} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [6.668464s] ... ok
{8} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [4.586459s] ... ok
{55} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [7.184431s] ... ok
{19} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [7.468864s] ... ok
{48} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [7.016118s] ... ok
{13} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [5.271612s] ... ok
{53} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [6.543099s] ... ok
{34} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [4.478670s] ... ok
{27} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [4.254903s] ... ok
{9} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [5.548737s] ... ok
{37} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [4.141555s] ... ok
{31} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [4.474833s] ... ok
{38} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [3.759946s] ... ok
{50} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [3.156872s] ... ok
{3} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [8.340746s] ... ok
{4} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [5.717006s] ... ok
{22} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [8.448192s] ... ok
{12} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [2.848499s] ... ok
{51} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [2.499488s] ... ok
{0} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [9.249117s] ... ok
{20} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [5.621277s] ... ok
{14} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [2.826254s] ... ok
{42} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [2.861135s] ... ok
{37} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [0.809274s] ... ok
{10} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [6.786635s] ... ok
{32} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [4.231428s] ... ok
{49} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [4.142169s] ... ok
{30} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [5.331565s] ... ok
{23} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [3.092762s] ... ok
{43} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [3.937027s] ... ok
{52} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [4.654426s] ... ok
{6} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.282369s] ... ok
{35} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.535867s] ... ok
{2} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [9.462006s] ... ok
{39} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [4.330937s] ... ok
{3} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [1.514044s] ... ok
{25} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [3.391670s] ... ok
{5} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.848301s] ... ok
{16} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [6.733172s] ... ok
{7} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [8.000677s] ... ok
{1} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [8.631703s] ... ok
{33} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [3.977477s] ... ok
{15} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [3.651746s] ... ok
{44} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [5.678412s] ... ok
{54} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [5.270965s] ... ok
{41} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [4.794588s] ... ok
{40} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [4.496365s] ... ok
{19} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [3.230733s] ... ok
{29} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [6.417169s] ... ok
{35} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [1.157018s] ... ok
{26} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [4.423347s] ... ok
{45} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [3.927453s] ... ok
{17} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [5.628805s] ... ok
{11} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [5.664309s] ... ok
{2} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.465690s] ... ok
{36} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [5.194173s] ... ok
{47} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [4.384202s] ... ok
{46} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [4.604557s] ... ok
{18} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [7.234191s] ... ok
{55} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.289495s] ... ok
{48} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [4.171424s] ... ok
{22} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [3.237780s] ... ok
{21} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [6.748782s] ... ok
{28} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.821368s] ... ok
{53} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [4.426605s] ... ok
{24} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [7.111481s] ... ok
{34} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [5.202263s] ... ok
======
Totals
======
Ran: 116 tests in 13.5391 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 557.8859 sec.
==============
Worker Balance
==============
- Worker 0 (1 tests) => 0:00:09.249117
- Worker 1 (2 tests) => 0:00:10.364741
- Worker 2 (2 tests) => 0:00:10.929242
- Worker 3 (2 tests) => 0:00:09.857232
- Worker 4 (2 tests) => 0:00:08.112280
- Worker 5 (2 tests) => 0:00:10.258349
- Worker 6 (2 tests) => 0:00:09.722110
- Worker 7 (2 tests) => 0:00:10.450484
- Worker 8 (2 tests) => 0:00:06.973903
- Worker 9 (2 tests) => 0:00:07.945613
- Worker 10 (2 tests) => 0:00:09.264586
- Worker 11 (2 tests) => 0:00:11.051187
- Worker 12 (2 tests) => 0:00:09.030074
- Worker 13 (2 tests) => 0:00:07.735832
- Worker 14 (2 tests) => 0:00:09.109846
- Worker 15 (2 tests) => 0:00:10.591057
- Worker 16 (2 tests) => 0:00:09.782665
- Worker 17 (2 tests) => 0:00:11.162361
- Worker 18 (2 tests) => 0:00:11.649630
- Worker 19 (2 tests) => 0:00:10.701130
- Worker 20 (2 tests) => 0:00:08.924947
- Worker 21 (2 tests) => 0:00:12.035944
- Worker 22 (2 tests) => 0:00:11.686923
- Worker 23 (2 tests) => 0:00:09.597596
- Worker 24 (2 tests) => 0:00:12.791214
- Worker 25 (2 tests) => 0:00:09.984883
- Worker 26 (2 tests) => 0:00:10.833104
- Worker 27 (2 tests) => 0:00:07.757987
- Worker 28 (2 tests) => 0:00:11.492508
- Worker 29 (2 tests) => 0:00:10.496979
- Worker 30 (2 tests) => 0:00:08.979166
- Worker 31 (2 tests) => 0:00:08.363330
- Worker 32 (3 tests) => 0:00:09.267250
- Worker 33 (3 tests) => 0:00:10.160690
- Worker 34 (3 tests) => 0:00:13.104560
- Worker 35 (3 tests) => 0:00:10.875170
- Worker 36 (2 tests) => 0:00:11.262106
- Worker 37 (3 tests) => 0:00:09.159307
- Worker 38 (2 tests) => 0:00:07.786739
- Worker 39 (2 tests) => 0:00:09.828144
- Worker 40 (2 tests) => 0:00:10.585366
- Worker 41 (2 tests) => 0:00:10.200260
- Worker 42 (2 tests) => 0:00:08.153532
- Worker 43 (2 tests) => 0:00:09.422788
- Worker 44 (2 tests) => 0:00:10.087700
- Worker 45 (2 tests) => 0:00:10.596812
- Worker 46 (2 tests) => 0:00:11.327399
- Worker 47 (2 tests) => 0:00:10.543679
- Worker 48 (2 tests) => 0:00:11.188494
- Worker 49 (2 tests) => 0:00:09.145920
- Worker 50 (2 tests) => 0:00:08.143331
- Worker 51 (2 tests) => 0:00:08.031406
- Worker 52 (2 tests) => 0:00:09.416777
- Worker 53 (2 tests) => 0:00:10.971202
- Worker 54 (2 tests) => 0:00:10.362689
- Worker 55 (2 tests) => 0:00:11.475803
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.462
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 9.249
nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid 8.632
nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate 8.448
nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change 8.341
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True 8.001
nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource 7.848
nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate 7.469
nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False 7.282
nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host 7.234
__________________________________________________________________________ summary ___________________________________________________________________________
functional-py39: commands succeeded
congratulations :)
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@1aa89f0ed17b83ace41cfc420b4b70c40c9703df#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.limit==1.5.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='2189921078'
functional-py39 run-test: commands[0] | stestr --test-path=./nova/tests/functional run nova.tests.functional.regressions
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
Modules with known eventlet monkey patching issues were imported prior to eventlet monkey patching: urllib3. This warning can usually be ignored if the caller is only importing and not executing nova code.
2022-03-16 12:08:25.338 1199117 INFO oslo_service.periodic_task [req-fec4d515-7c8c-444e-a427-81d1c58fc8ba - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.348 1199119 INFO oslo_service.periodic_task [req-032659d6-cf50-43db-b9d4-17ca998bae06 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.369 1199115 INFO oslo_service.periodic_task [req-f090a65b-2cc6-4464-b5e3-ce58c7b9fa5c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.432 1199123 INFO oslo_service.periodic_task [req-7e0038b8-6275-4cf9-89ec-f6597130f024 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.442 1199111 INFO oslo_service.periodic_task [req-019411d8-1c0d-427d-b51c-8cdc6ab4bcc4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.485 1199127 INFO oslo_service.periodic_task [req-480e0e51-18a2-417d-a476-b9a45975214a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.493 1199129 INFO oslo_service.periodic_task [req-0d97335c-9ed1-4360-b0d2-1a6627b93511 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.494 1199163 INFO oslo_service.periodic_task [req-d7c26fd3-db28-4069-81c6-b7271ca8925b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.511 1199121 INFO oslo_service.periodic_task [req-d8b28ab7-59d5-491d-91be-c017f40b09ff - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.522 1199171 INFO oslo_service.periodic_task [req-7fd0fd6d-7c19-4e7c-847c-e5bf26b6e29a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.536 1199165 INFO oslo_service.periodic_task [req-3e54fec3-51cd-419d-994e-a41d97821119 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.564 1199109 INFO oslo_service.periodic_task [req-a61b8f4d-2512-4fe7-8b57-364d170edc98 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.571 1199131 INFO oslo_service.periodic_task [req-94bf7980-76f1-42a4-9646-b962e45439f0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.575 1199139 INFO oslo_service.periodic_task [req-06c67c73-745f-429f-9c18-e4857048f12a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.593 1199175 INFO oslo_service.periodic_task [req-812f0a34-4616-44e6-b2b6-40c545c4e7d8 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.611 1199105 INFO oslo_service.periodic_task [req-0f093abc-e10b-445b-a31d-98d27a962ec9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.616 1199173 INFO oslo_service.periodic_task [req-045cb35e-8440-48c4-b4da-45289d47f890 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.618 1199167 INFO oslo_service.periodic_task [req-a1ceb549-ff2b-4136-a6af-de1a35cdd0a6 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.646 1199113 INFO oslo_service.periodic_task [req-2b12f0a9-df3a-425e-a185-c90869905b6d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.655 1199141 INFO oslo_service.periodic_task [req-3f2c9a62-6343-4051-99c7-ef25a56fbce1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.674 1199159 INFO oslo_service.periodic_task [req-f3a825fd-ef81-4e08-8461-3c0690e3005f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.676 1199199 INFO oslo_service.periodic_task [req-28435483-4521-490b-bc7a-4e78c08e4e86 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.683 1199189 INFO oslo_service.periodic_task [req-ae0abc86-6c90-4036-949d-9c2290eb3ade - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.696 1199179 INFO oslo_service.periodic_task [req-6a5d965e-da60-4acd-a1c8-1d391cb78be9 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.699 1199151 INFO oslo_service.periodic_task [req-b965e6cf-ca23-4351-8707-c6f3f2e9a7c0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.707 1199207 INFO oslo_service.periodic_task [req-88f51ef8-dce7-4029-a87c-1675dc86ff85 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.711 1199135 INFO oslo_service.periodic_task [req-06de38aa-1f8c-428e-aa7d-f6bb57d512ef - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.725 1199212 INFO oslo_service.periodic_task [req-c38e71ff-4a64-4bf4-83bb-912d80adefac - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.731 1199177 INFO oslo_service.periodic_task [req-7948c3de-17e9-4c1c-a4d8-e2eaae017483 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.736 1199193 INFO oslo_service.periodic_task [req-948fe1dd-35ea-42a7-9528-72f88a9f0f1f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.751 1199195 INFO oslo_service.periodic_task [req-0f13db31-a2c2-4a82-bc3a-b8dfea78b2ea - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.769 1199157 INFO oslo_service.periodic_task [req-1d31a563-1973-491d-be6b-e324f6d79c71 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.781 1199169 INFO oslo_service.periodic_task [req-5b9bfe55-9191-4aa6-ae57-84d7f42452bd - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.798 1199191 INFO oslo_service.periodic_task [req-b7f72233-6a5c-45ab-863b-be70af94b509 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.804 1199149 INFO oslo_service.periodic_task [req-b2d269c5-0a4f-4da7-b172-f16585338a86 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.805 1199143 INFO oslo_service.periodic_task [req-89dc1da7-4eb9-4de9-b4cb-1adde9b3c30c - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.810 1199133 INFO oslo_service.periodic_task [req-9b6432fa-4e11-4967-88b0-cee09ca0366e - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.815 1199103 INFO oslo_service.periodic_task [req-4a652643-5fb3-4919-a1cd-400421dcd537 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.823 1199197 INFO oslo_service.periodic_task [req-dc176a2f-52e8-4434-b23d-bfb8c5d6b90a - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.833 1199161 INFO oslo_service.periodic_task [req-c714b103-c985-404f-af90-1667d722bcba - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.859 1199107 INFO oslo_service.periodic_task [req-0e8d7731-914d-456b-a6fa-cd8d93a1f044 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.861 1199181 INFO oslo_service.periodic_task [req-0b14b208-cca4-4bd9-bdf3-2255590dffad - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.864 1199201 INFO oslo_service.periodic_task [req-67eeb425-9262-4652-a101-2e8591a33035 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.875 1199147 INFO oslo_service.periodic_task [req-270d303f-88a1-4f92-9e5c-ebb82a6b4ea5 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.897 1199145 INFO oslo_service.periodic_task [req-726da6b8-75b5-4c8c-8472-1411bf8be098 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.901 1199153 INFO oslo_service.periodic_task [req-a1b2414c-3d8b-4e11-9775-9c5dcb36b3b1 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.918 1199155 INFO oslo_service.periodic_task [req-cd1dd5e2-3d6c-41da-8b59-daa869c4c08b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.924 1199137 INFO oslo_service.periodic_task [req-7cb00106-2ade-4283-b01a-5767d458f762 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.926 1199187 INFO oslo_service.periodic_task [req-85a5f4b4-7b6b-4d1e-82ba-29dc729890b0 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.973 1199185 INFO oslo_service.periodic_task [req-bf830c85-3ecc-4a27-bf2e-c440c6e5fa64 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.983 1199205 INFO oslo_service.periodic_task [req-f89ff886-e116-407c-83c4-6b1846feb8b4 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:25.988 1199125 INFO oslo_service.periodic_task [req-e599882e-1484-45eb-bba8-b22f8123cf12 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:26.015 1199203 INFO oslo_service.periodic_task [req-f0ed93e4-c351-4c78-9bc4-34bf1f093b0b - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:26.020 1199209 INFO oslo_service.periodic_task [req-27a63154-ca70-4aaf-a474-85524be2210f - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:26.085 1199183 INFO oslo_service.periodic_task [req-d8d9e520-7097-4b11-b829-e14e67c48356 - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
2022-03-16 12:08:26.197 1199214 INFO oslo_service.periodic_task [req-91c4525b-289d-44bb-82eb-6c6f4670723d - - - - -] Skipping periodic task _discover_hosts_in_cells because its interval is negative
{31} nova.tests.functional.regressions.test_bug_1778305.InstanceListWithOldDeletedServiceTestCase.test_instance_list_old_deleted_service_with_no_uuid [1.631309s] ... ok
{2} nova.tests.functional.regressions.test_bug_1568208.TestServerGet.test_guru_meditation_report_generation [1.659801s] ... ok
{6} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots [2.390635s] ... ok
{7} nova.tests.functional.regressions.test_bug_1552888.TestAggregateCreation.test_name_validation [2.463259s] ... ok
{4} nova.tests.functional.regressions.test_bug_1554631.TestCinderForbidden.test_forbidden_cinder_operation_returns_403 [2.408273s] ... ok
{8} nova.tests.functional.regressions.test_bug_1558866.TestServerGet.test_boot_server_with_invalid_image_meta [2.502055s] ... ok
{10} nova.tests.functional.regressions.test_bug_1541691.TestServerValidation.test_name_validation [2.441358s] ... ok
{9} nova.tests.functional.regressions.test_bug_1620248.TestServerUpdate.test_update_name_before_scheduled [2.424271s] ... ok
{3} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_snapshots_force [2.509946s] ... ok
{5} nova.tests.functional.regressions.test_bug_1554631.TestCinderOverLimit.test_over_limit_volumes_with_message [2.500154s] ... ok
{15} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_multi_create_server_group_members_over_quota [3.051632s] ... ok
{20} nova.tests.functional.regressions.test_bug_1780373.TestMultiCreateServerGroupMemberOverQuota.test_concurrent_request_server_group_members_over_quota [3.114877s] ... ok
{23} nova.tests.functional.regressions.test_bug_1806515.ShowErrorServerWithTags.test_show_server_tag_in_error [3.492012s] ... ok
{22} nova.tests.functional.regressions.test_bug_1735407.TestParallelEvacuationWithServerGroup.test_parallel_evacuate_with_server_group ... SKIPPED: Skipped until bug 1763181 is fixed
{32} nova.tests.functional.regressions.test_bug_1404867.DeleteWithReservedVolumes.test_delete_with_reserved_volumes_new [3.881092s] ... ok
{33} nova.tests.functional.regressions.test_bug_1839560.PeriodicNodeRecreateTestCase.test_update_available_resource_node_recreate [3.736615s] ... ok
{28} nova.tests.functional.regressions.test_bug_1670627.TestDeleteFromCell0CheckQuota.test_delete_error_instance_in_cell0_and_check_quota [3.861792s] ... ok
{25} nova.tests.functional.regressions.test_bug_1522536.TestServerGet.test_id_overlap [3.751039s] ... ok
{34} nova.tests.functional.regressions.test_bug_1678326.TestDeleteFromCell0CheckQuotaRollback.test_delete_error_instance_in_cell0_and_check_quota [4.152825s] ... ok
{38} nova.tests.functional.regressions.test_bug_1548980.TestServerGet.test_list_deleted_instances [4.150528s] ... ok
{14} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive [4.393523s] ... ok
{11} nova.tests.functional.regressions.test_bug_1746483.TestBootFromVolumeIsolatedHostsFilter.test_boot_from_volume_with_isolated_image [4.595442s] ... ok
{35} nova.tests.functional.regressions.test_bug_1781710.AntiAffinityMultiCreateRequest.test_anti_affinity_multi_create [5.099052s] ... ok
{54} nova.tests.functional.regressions.test_bug_1781286.RescheduleBuildAvailabilityZoneUpCall.test_server_create_reschedule_blocked_az_up_call [5.019288s] ... ok
{41} nova.tests.functional.regressions.test_bug_1689692.ServerListLimitMarkerCell0Test.test_list_servers_marker_in_cell0_more_limit [4.974627s] ... ok
{53} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_from_api [4.987305s] ... ok
{48} nova.tests.functional.regressions.test_bug_1837955.BuildRescheduleClaimFailsTestCase.test_build_reschedule_alt_host_alloc_fails [5.385663s] ... ok
{45} nova.tests.functional.regressions.test_bug_1849409.ListDeletedServersWithMarker.test_list_deleted_servers_with_marker [5.359189s] ... ok
{43} nova.tests.functional.regressions.test_bug_1719730.TestRescheduleWithServerGroup.test_reschedule_with_server_group [5.494302s] ... ok
{44} nova.tests.functional.regressions.test_bug_1732947.RebuildVolumeBackedSameImage.test_volume_backed_rebuild_same_image [5.431312s] ... ok
{26} nova.tests.functional.regressions.test_bug_1784353.TestRescheduleWithVolumesAttached.test_reschedule_with_volume_attached [5.368026s] ... ok
{37} nova.tests.functional.regressions.test_bug_1713783.FailedEvacuateStateTests.test_evacuate_no_valid_host [5.574460s] ... ok
{47} nova.tests.functional.regressions.test_bug_1671648.TestRetryBetweenComputeNodeBuilds.test_retry_build_on_compute_error [5.482445s] ... ok
{27} nova.tests.functional.regressions.test_bug_1679750.TestLocalDeleteAllocations.test_local_delete_removes_allocations_after_compute_restart [5.546980s] ... ok
{30} nova.tests.functional.regressions.test_bug_1843708.RebuildWithKeypairTestCase.test_rebuild_with_keypair [5.882239s] ... ok
{55} nova.tests.functional.regressions.test_bug_1806064.BootFromVolumeOverQuotaRaceDeleteTest.test_bfv_quota_race_local_delete [5.191258s] ... ok
{42} nova.tests.functional.regressions.test_bug_1675570.TestLocalDeleteAttachedVolumes.test_local_delete_with_volume_attached [5.759047s] ... ok
{11} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_build_request_and_instance_not_found [1.181295s] ... ok
{18} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_live_migration_task_rollback [6.524397s] ... ok
{50} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_az [6.116032s] ... ok
{29} nova.tests.functional.regressions.test_bug_1823370.MultiCellEvacuateTestCase.test_evacuate_multi_cell [6.339883s] ... ok
{19} nova.tests.functional.regressions.test_bug_1764883.TestEvacuationWithSourceReturningDuringRebuild.test_evacuation_with_source_compute_returning_during_rebuild [6.584267s] ... ok
{13} nova.tests.functional.regressions.test_bug_1718455.TestLiveMigrateOneOfConcurrentlyCreatedInstances.test_live_migrate_one_multi_created_instance [6.924028s] ... ok
{17} nova.tests.functional.regressions.test_bug_1830747.MissingReqSpecInstanceGroupUUIDTestCase.test_cold_migrate_reschedule [6.497477s] ... ok
{40} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_evacuate [6.347720s] ... ok
{49} nova.tests.functional.regressions.test_bug_1815153.NonPersistentFieldNotResetTest.test_cold_migrate [6.652313s] ... ok
{21} nova.tests.functional.regressions.test_bug_1702454.SchedulerOnlyChecksTargetTest.test_evacuate_server [6.707081s] ... ok
{12} nova.tests.functional.regressions.test_bug_1862633.UnshelveNeutronErrorTest.test_unshelve_offloaded_fails_due_to_neutron [7.186290s] ... ok
{36} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_1_True [7.125835s] ... ok
{24} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_rebuild_after_conf_change [7.116948s] ... ok
{52} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_0 [7.147442s] ... ok
{32} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_0 [3.437893s] ... ok
{46} nova.tests.functional.regressions.test_bug_1669054.ResizeEvacuateTestCase.test_resize_then_evacuate [7.233306s] ... ok
{10} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_confirm_2_False [5.248267s] ... ok
{51} nova.tests.functional.regressions.test_bug_1781286.RescheduleMigrateAvailabilityZoneUpCall.test_migrate_reschedule_blocked_az_up_call [7.158902s] ... ok
{34} nova.tests.functional.regressions.test_bug_1937375.TestDuplicateVolAttachRace.test_duplicate_volume_attach_race [3.510034s] ... ok
{7} nova.tests.functional.regressions.test_bug_1595962.TestSerialConsoleLiveMigrate.test_serial_console_live_migrate [5.572207s] ... ok
{54} nova.tests.functional.regressions.test_bug_1853009.NodeRebalanceDeletedComputeNodeRaceTestCase.test_node_rebalance_deleted_compute_node_race [2.627103s] ... ok
{39} nova.tests.functional.regressions.test_bug_1741125.TestServerResizeReschedule.test_resize_reschedule_uses_host_lists [7.714148s] ... ok
{20} nova.tests.functional.regressions.test_bug_1849165.UpdateResourceMigrationRaceTest.test_update_dest_between_mig_start_and_claim [4.708429s] ... ok
{28} nova.tests.functional.regressions.test_bug_1893284.TestServersPerUserQuota.test_create_server_with_per_user_quota [4.166250s] ... ok
{44} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_without_config_drive [2.565703s] ... ok
{31} nova.tests.functional.regressions.test_bug_1794996.TestEvacuateDeleteServerRestartOriginalCompute.test_evacuate_delete_server_restart_original_compute [6.742164s] ... ok
{23} nova.tests.functional.regressions.test_bug_1825020.VolumeBackedResizeDiskDown.test_volume_backed_resize_disk_down [4.826885s] ... ok
{45} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_image_metadata [3.092254s] ... ok
{13} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_config_drive [1.819826s] ... ok
{16} nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate [8.544911s] ... ok
{10} nova.tests.functional.regressions.test_bug_1914777.TestDeleteWhileBooting.test_deleting_instance_at_the_same_time [1.289558s] ... ok
{26} nova.tests.functional.regressions.test_bug_1825034.FillVirtualInterfaceListMigration.test_fill_vifs_migration [3.260662s] ... ok
Captured stderr:
~~~~~~~~~~~~~~~
/home/ubuntu/nova/nova/db/main/api.py:4197: SAWarning: SELECT statement has a cartesian product between FROM element(s) "security_group_instance_association", "security_groups" and FROM element "instances". Apply join condition(s) between each element to resolve.
rows = conn.execute(select).fetchall()
{17} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_with_forced_config_drive_reboot [2.135517s] ... ok
{53} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state [3.711541s] ... ok
{25} nova.tests.functional.regressions.test_bug_1682693.ServerTagsFilteringTest.test_list_servers_filter_by_tags [5.188967s] ... ok
{9} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_down_host [6.958733s] ... ok
{33} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_1_True [5.410318s] ... ok
{4} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_shelve_unshelve_conf_change [7.084132s] ... ok
{22} nova.tests.functional.regressions.test_bug_1845291.ForcedHostMissingReScheduleTestCase.test_boot_with_az_and_host_then_migrate_re_schedules [5.720339s] ... ok
{19} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_forced_down_host [2.934547s] ... ok
{1} nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate [9.554697s] ... ok
{38} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migrate_on_compute_fail [5.359517s] ... ok
{47} nova.tests.functional.regressions.test_bug_1908075.TestVolAttachCinderReset.test_volume_attach_after_cinder_reset_state_multiattach_volume [3.949974s] ... ok
{12} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_bfv_volume_image_metadata [2.659267s] ... ok
{48} nova.tests.functional.regressions.test_bug_1843090.PinnedComputeRpcTests.test_reschedule_migration_5_1 [4.295322s] ... ok
{27} nova.tests.functional.regressions.test_bug_1790204.ResizeSameHostDoubledAllocations.test_resize_same_host_full_allocations [4.051864s] ... ok
{0} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_2_False [9.637633s] ... ok
{6} nova.tests.functional.regressions.test_bug_1896463.TestEvacuateResourceTrackerRace.test_evacuate_races_with_update_available_resource [7.778434s] ... ok
{18} nova.tests.functional.regressions.test_bug_1937084.TestDetachAttachmentNotFound.test_delete_attachment_volume_not_found [3.498429s] ... ok
{3} nova.tests.functional.regressions.test_bug_1888395.TestLiveMigrationWithoutMultiplePortBindings.test_live_migrate [7.587450s] ... ok
{40} nova.tests.functional.regressions.test_bug_1831771.TestDelete.test_delete_during_create [3.216440s] ... ok
{21} nova.tests.functional.regressions.test_bug_1886418.TestServices.test_compute_disable_after_server_create [3.132285s] ... ok
{41} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuations.test_force_up_with_done_evacuation_records [4.808688s] ... ok
{8} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_2_False [7.924653s] ... ok
{55} nova.tests.functional.regressions.test_bug_1835822.RegressionTest1835822.test_create_server_config_drive_reboot_after_conf_change [4.385279s] ... ok
{43} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_swap_volume [4.634168s] ... ok
{24} nova.tests.functional.regressions.test_bug_1902925.ComputeVersion5xPinnedRpcTests.test_rebuild_instance_5_12 [3.131674s] ... ok
{2} nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_deleted_service_with_no_uuid [8.459806s] ... ok
{5} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_revert_1_True [7.958507s] ... ok
{35} nova.tests.functional.regressions.test_bug_1879878.TestSameCell.test_migrate_revert_2_False [5.439498s] ... ok
{42} nova.tests.functional.regressions.test_bug_1922053.ForceUpWithDoneEvacuationsv252.test_force_up_with_done_evacuation_records [4.479876s] ... ok
{37} nova.tests.functional.regressions.test_bug_1928063.TestSEVInstanceReboot.test_hard_reboot [5.019964s] ... ok
{15} nova.tests.functional.regressions.test_bug_1939545.TestLiveMigrateUpdateDevicePath.test_live_migrate_update_device_path [7.468172s] ... ok
{14} nova.tests.functional.regressions.test_bug_1879878.TestCrossCell.test_migrate_confirm_1_True [6.824865s] ... ok
{0} nova.tests.functional.regressions.test_bug_1895696.TestNonBootableImageMeta.test_nonbootable_metadata_image_metadata [1.354598s] ... ok
{1} nova.tests.functional.regressions.test_bug_1852458.TestInstanceActionBuryInCell0.test_bury_in_cell0_instance_create_action [1.695234s] ... ok
{46} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule_with_host [3.995326s] ... ok
{49} nova.tests.functional.regressions.test_bug_1825537.FinishResizeErrorAllocationCleanupTestCase.test_finish_resize_fails_allocation_cleanup [4.466268s] ... ok
{50} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_disabled_host [4.864306s] ... ok
{29} nova.tests.functional.regressions.test_bug_1848343.DeletedServerAllocationRevertTest.test_migration_task_rollback [4.863658s] ... ok
{36} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_schedule [4.329298s] ... ok
{30} nova.tests.functional.regressions.test_bug_1944619.TestRollbackWithHWOffloadedOVS.test_rollback_pre_live_migration [5.757311s] ... ok
{16} nova.tests.functional.regressions.test_bug_1909120.TestDetachVolumeWhileComputeDown.test_volume_detach_while_compute_down [2.980151s] ... ok
{52} nova.tests.functional.regressions.test_bug_1889108.TestVolAttachmentsDuringPreLiveMigration.test_vol_attachments_during_driver_pre_live_mig_failure [4.474312s] ... ok
{14} nova.tests.functional.regressions.test_bug_1894966.TestCreateServerGroupWithEmptyPolicies.test_create_with_empty_policies [0.781212s] ... ok
{31} nova.tests.functional.regressions.test_bug_1899649.TestVolAttachmentsAfterFailureToScheduleOrBuild.test_failure_to_build_with_az_and_host [3.954070s] ... ok
{39} nova.tests.functional.regressions.test_bug_1943431.TestLibvirtROMultiattachMigrate.test_ro_multiattach_migrate_volume [4.348281s] ... ok
{51} nova.tests.functional.regressions.test_bug_1899835.TestVolumeDisconnectDuringPreLiveMigrationRollback.test_disconnect_volume_called_during_pre_live_migration_failure [5.516372s] ... ok
{11} nova.tests.functional.regressions.test_bug_1938326.TestMigrateFromDownHost.test_migrate_from_down_host [7.145456s] ... ok
======
Totals
======
Ran: 116 tests in 13.5904 sec.
- Passed: 115
- Skipped: 1
- Expected Fail: 0
- Unexpected Success: 0
- Failed: 0
Sum of execute time for each test: 555.9839 sec.
==============
Worker Balance
==============
- Worker 0 (2 tests) => 0:00:10.993598
- Worker 1 (2 tests) => 0:00:11.252109
- Worker 2 (2 tests) => 0:00:10.121816
- Worker 3 (2 tests) => 0:00:10.100108
- Worker 4 (2 tests) => 0:00:09.495049
- Worker 5 (2 tests) => 0:00:10.461538
- Worker 6 (2 tests) => 0:00:10.172110
- Worker 7 (2 tests) => 0:00:08.037639
- Worker 8 (2 tests) => 0:00:10.429385
- Worker 9 (2 tests) => 0:00:09.386122
- Worker 10 (3 tests) => 0:00:08.983648
- Worker 11 (3 tests) => 0:00:12.924805
- Worker 12 (2 tests) => 0:00:09.846721
- Worker 13 (2 tests) => 0:00:08.745388
- Worker 14 (3 tests) => 0:00:12.002465
- Worker 15 (2 tests) => 0:00:10.521506
- Worker 16 (2 tests) => 0:00:11.526952
- Worker 17 (2 tests) => 0:00:08.634254
- Worker 18 (2 tests) => 0:00:10.024483
- Worker 19 (2 tests) => 0:00:09.520700
- Worker 20 (2 tests) => 0:00:07.825533
- Worker 21 (2 tests) => 0:00:09.841086
- Worker 22 (2 tests) => 0:00:09.142176
- Worker 23 (2 tests) => 0:00:08.319747
- Worker 24 (2 tests) => 0:00:10.250034
- Worker 25 (2 tests) => 0:00:08.940739
- Worker 26 (2 tests) => 0:00:08.629865
- Worker 27 (2 tests) => 0:00:09.600092
- Worker 28 (2 tests) => 0:00:08.029802
- Worker 29 (2 tests) => 0:00:11.205200
- Worker 30 (2 tests) => 0:00:11.641000
- Worker 31 (3 tests) => 0:00:12.331545
- Worker 32 (2 tests) => 0:00:07.321043
- Worker 33 (2 tests) => 0:00:09.147990
- Worker 34 (2 tests) => 0:00:07.664996
- Worker 35 (2 tests) => 0:00:10.540005
- Worker 36 (2 tests) => 0:00:11.457209
- Worker 37 (2 tests) => 0:00:10.596754
- Worker 38 (2 tests) => 0:00:09.511649
- Worker 39 (2 tests) => 0:00:12.064886
- Worker 40 (2 tests) => 0:00:09.565213
- Worker 41 (2 tests) => 0:00:09.785677
- Worker 42 (2 tests) => 0:00:10.241017
- Worker 43 (2 tests) => 0:00:10.130661
- Worker 44 (2 tests) => 0:00:07.998415
- Worker 45 (2 tests) => 0:00:08.452789
- Worker 46 (2 tests) => 0:00:11.230863
- Worker 47 (2 tests) => 0:00:09.434081
- Worker 48 (2 tests) => 0:00:09.681916
- Worker 49 (2 tests) => 0:00:11.119949
- Worker 50 (2 tests) => 0:00:10.981544
- Worker 51 (2 tests) => 0:00:12.677315
- Worker 52 (2 tests) => 0:00:11.623117
- Worker 53 (2 tests) => 0:00:08.701203
- Worker 54 (2 tests) => 0:00:07.648136
- Worker 55 (2 tests) => 0:00:09.579065
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.638
nova.tests.functional.regressions.test_bug_1718512.TestRequestSpecRetryReschedule.test_resize_with_reschedule_then_live_migrate 9.555
nova.tests.functional.regressions.test_bug_1797580.ColdMigrateTargetHostThenLiveMigrateTest.test_cold_migrate_target_host_then_live_migrate 8.545
nova.tests.functional.regressions.test_bug_1764556.InstanceListWithDeletedServicesTestCase.test_instance_list_d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment