Skip to content

Commit 4cf6323

Browse files
lyarwoodgibizer
authored andcommitted
func: Increase rpc_response_timeout in TestMultiCellMigrate tests
This was previously set really low to 1 second that was leading to more involved flows such as test_delete_while_in_verify_resize_status timing out when the target calls the conductor to confirm the resize on the source. This change simply increases the timeout in the test but we might want to think about moving this call over to rpc_long_timeout this could be an issue in real world deployments. Closes-Bug: #1938021 Change-Id: Ibba2d1506a0b026d35d7bf35384ec6439f438b01 (cherry picked from commit d4dbcd5)
1 parent baf0d93 commit 4cf6323

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nova/tests/functional/test_cross_cell_migrate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def setUp(self):
7373
self.created_images = [] # list of image IDs created during resize
7474

7575
# Adjust the polling interval and timeout for long RPC calls.
76-
self.flags(rpc_response_timeout=1)
76+
self.flags(rpc_response_timeout=10)
7777
self.flags(long_rpc_timeout=60)
7878

7979
# Set up 2 compute services in different cells

0 commit comments

Comments
 (0)