mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-8935 - Do not retry 60 times when we expect the SSH to fail
This commit is contained in:
parent
5ca32dfc82
commit
3eb6ba0699
|
|
@ -432,7 +432,9 @@ class TestPortForwarding(cloudstackTestCase):
|
|||
src_nat_ip_addr.ipaddress,
|
||||
self.virtual_machine.ssh_port,
|
||||
self.virtual_machine.username,
|
||||
self.virtual_machine.password
|
||||
self.virtual_machine.password,
|
||||
retries=2,
|
||||
delay=0
|
||||
)
|
||||
return
|
||||
|
||||
|
|
@ -726,7 +728,8 @@ class TestRebootRouter(cloudstackTestCase):
|
|||
self.public_ip.ipaddress.ipaddress,
|
||||
self.services["natrule"]["publicport"],
|
||||
self.vm_1.username,
|
||||
self.vm_1.password
|
||||
self.vm_1.password,
|
||||
retries=5
|
||||
)
|
||||
except Exception as e:
|
||||
self.fail(
|
||||
|
|
|
|||
Loading…
Reference in New Issue