Skip to content

Commit

Permalink
Merge pull request #447 from libhe/master
Browse files Browse the repository at this point in the history
Increase timeout value for server to get created.
  • Loading branch information
libhe authored Sep 27, 2024
2 parents 4c49105 + c0f3d3e commit 447cce3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion os_tests/libs/resources_libvirt.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def create(self, wait=True):
dom.create()
if wait:
for count in utils_lib.iterate_timeout(
90, "Timed out waiting for server to get Created."):
300, "Timed out waiting for server to get Created."):
if self.exists() and self.floating_ip:
break
self._data = None
Expand Down
4 changes: 3 additions & 1 deletion os_tests/tests/test_rhel_guest_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ def test_check_partitions(self):
product_id = utils_lib.get_product_id(self)
if float(product_id) >= 10.0:
expected_partitions = 4
if utils_lib.is_arch(self, arch='aarch64') or utils_lib.is_arch(self, arch='ppc64le'):
if utils_lib.is_arch(self, arch='s390x'):
expected_partitions = 2
elif utils_lib.is_arch(self, arch='aarch64') or utils_lib.is_arch(self, arch='ppc64le'):
expected_partitions = 3
elif float(product_id) >= 9.0:
expected_partitions = 5
Expand Down

0 comments on commit 447cce3

Please sign in to comment.