mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-4344: pass delay and retries explicitly to remoteSSHclient to reduce time taken by the tests
Signed-off-by: venkataswamybabu budumuru <venkataswamybabu.budumuru@citrix.com>
(cherry picked from commit 94f741bbf5)
This commit is contained in:
parent
e6fd794ca0
commit
ff0f738973
|
|
@ -464,7 +464,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
|
||||
|
||||
|
|
@ -580,7 +582,9 @@ class TestPortForwarding(cloudstackTestCase):
|
|||
ip_address.ipaddress.ipaddress,
|
||||
self.virtual_machine.ssh_port,
|
||||
self.virtual_machine.username,
|
||||
self.virtual_machine.password
|
||||
self.virtual_machine.password,
|
||||
retries=2,
|
||||
delay=0
|
||||
)
|
||||
return
|
||||
|
||||
|
|
@ -883,7 +887,9 @@ class TestReleaseIP(cloudstackTestCase):
|
|||
self.ip_addr.ipaddress,
|
||||
self.services["natrule"]["publicport"],
|
||||
self.virtual_machine.username,
|
||||
self.virtual_machine.password
|
||||
self.virtual_machine.password,
|
||||
retries=2,
|
||||
delay=0
|
||||
)
|
||||
return
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue