Description of problem: In tempest test code, tempest/api/volume/admin/test_volumes_backup.py, the method, wait_for_backup_status in waiters.py (tempest/common) gets called to check the timing, a timeout is being raised on a volume backup test scenario, which could be that because the volume is slow or we tripped a cinder bug, but either way the wait loop for backups in tempest is referencing a non-existent exception class, exceptions.VolumeBackupException. This was fixed upstream in [1][2] Captured traceback: ~~~~~~~~~~~~~~~~~ Traceback (most recent call last): File "tempest/api/volume/admin/test_volumes_backup.py", line 72, in test_volume_backup_export_import backup['id'], 'available') File "tempest/common/waiters.py", line 224, in wait_for_backup_status raise exceptions.VolumeBackupException(backup_id=backup_id) AttributeError: 'module' object has no attribute 'VolumeBackupException' [1] https://bugs.launchpad.net/tempest/+bug/1632410 [2] https://review.openstack.org/#/c/385137/ Version-Release number of selected component (if applicable): openstack-tempest-13.0.0-12.bafe630git.el7ost.noarch
It is fixed in this bug https://bugzilla.redhat.com/show_bug.cgi?id=1455928
Thanks closing as duplicate of 1455928 *** This bug has been marked as a duplicate of bug 1455928 ***
(In reply to Martin Schuppert from comment #2) > Thanks closing as duplicate of 1455928 > > *** This bug has been marked as a duplicate of bug 1455928 *** The Test in https://bugzilla.redhat.com/show_bug.cgi?id=1455928 is different than this one. The bug happens in Test: test_volume_backup_export_import while the DUPLICATE bug is for Test: test_backup_create_attached_volume Which PASS as expected.
(In reply to Igal Katzir from comment #3) > (In reply to Martin Schuppert from comment #2) > > Thanks closing as duplicate of 1455928 > > > > *** This bug has been marked as a duplicate of bug 1455928 *** > > The Test in https://bugzilla.redhat.com/show_bug.cgi?id=1455928 is different > than this one. > The bug happens in Test: test_volume_backup_export_import > while the DUPLICATE bug is for Test: test_backup_create_attached_volume > Which PASS as expected. the underlying issue is the same. Both fail in tempest/common/waiters.py Captured traceback: ~~~~~~~~~~~~~~~~~ Traceback (most recent call last): File "tempest/api/volume/admin/test_volumes_backup.py", line 72, in test_volume_backup_export_import backup['id'], 'available') File "tempest/common/waiters.py", line 224, in wait_for_backup_status raise exceptions.VolumeBackupException(backup_id=backup_id) AttributeError: 'module' object has no attribute 'VolumeBackupException' This got fixed upstream with commit ceb2b4684d18e6fa65b500b6a946d4c13cb606f3 and BZ 1455928 tracks the backport [1] to the tempest version used in OSP10. [1] https://review.gerrithub.io/#/c/362733/
(In reply to Martin Schuppert from comment #4) > > This got fixed upstream with commit ceb2b4684d18e6fa65b500b6a946d4c13cb606f3 > and BZ 1455928 tracks the backport [1] to the tempest version used in OSP10. > Does it mean that I need to update my OSP10? thanks, Igal