Increase timeout for check_connection_through_host

Change-Id: Ia4efaec838b14ab53f18087312168f8dfffd1066
This commit is contained in:
ekhomyakova 2016-09-22 15:46:36 +03:00
parent 8d56654722
commit c22f7f3119
1 changed files with 2 additions and 2 deletions

View File

@ -1457,14 +1457,14 @@ class TestDVSSystem(TestBasic):
for key in ip_pair: for key in ip_pair:
ip_pair[key] = [value for value in ips[group] if key != value] ip_pair[key] = [value for value in ips[group] if key != value]
openstack.check_connection_through_host( openstack.check_connection_through_host(
access_point_ip, ip_pair, timeout=60 * 4) access_point_ip, ip_pair, timeout=60 * 5)
self.show_step(11) self.show_step(11)
ip_pair = dict.fromkeys(ips['SG1']) ip_pair = dict.fromkeys(ips['SG1'])
for key in ip_pair: for key in ip_pair:
ip_pair[key] = ips['SG2'] ip_pair[key] = ips['SG2']
openstack.check_connection_through_host( openstack.check_connection_through_host(
access_point_ip, ip_pair, result_of_command=1, timeout=60 * 4) access_point_ip, ip_pair, result_of_command=1, timeout=60 * 5)
@test(depends_on=[dvs_vcenter_systest_setup], @test(depends_on=[dvs_vcenter_systest_setup],
groups=["dvs_remote_ip_prefix"]) groups=["dvs_remote_ip_prefix"])