mirror of https://github.com/apache/cloudstack.git
Merge pull request #1473 from remibergsma/47_bump_test_loadbalance_retries
Bump ssh retries to prevent false positives of test_loadbalanceNo more false positives after this change. ``` [root@cs1 integration]# cat /tmp//MarvinLogs/test_loadbalance_TR5RJD/results.txt Test to create Load balancing rule with source NAT ... === TestName: test_01_create_lb_rule_src_nat | Status : SUCCESS === ok Test to create Load balancing rule with non source NAT ... === TestName: test_02_create_lb_rule_non_nat | Status : SUCCESS === ok Test for assign & removing load balancing rule ... === TestName: test_assign_and_removal_lb | Status : SUCCESS === ok ---------------------------------------------------------------------- Ran 3 tests in 930.418s OK ``` * pr/1473: bump ssh retries to prevent false positives of test_loadbalance Signed-off-by: Will Stevens <williamstevens@gmail.com>
This commit is contained in:
commit
987e8009b0
|
|
@ -134,7 +134,7 @@ class TestLoadBalance(cloudstackTestCase):
|
|||
self.services['lbrule']["publicport"],
|
||||
self.vm_1.username,
|
||||
self.vm_1.password,
|
||||
retries=5
|
||||
retries=10
|
||||
)
|
||||
unameCmd.append(ssh_1.execute("uname")[0])
|
||||
self.debug(unameCmd)
|
||||
|
|
|
|||
Loading…
Reference in New Issue