Return-Path: X-Original-To: apmail-cloudstack-commits-archive@www.apache.org Delivered-To: apmail-cloudstack-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 2FB6610654 for ; Sat, 16 Nov 2013 11:42:22 +0000 (UTC) Received: (qmail 54705 invoked by uid 500); 16 Nov 2013 11:42:21 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 54675 invoked by uid 500); 16 Nov 2013 11:42:20 -0000 Mailing-List: contact commits-help@cloudstack.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cloudstack.apache.org Delivered-To: mailing list commits@cloudstack.apache.org Received: (qmail 54667 invoked by uid 99); 16 Nov 2013 11:42:19 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 16 Nov 2013 11:42:19 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 66D0682FDD2; Sat, 16 Nov 2013 11:42:19 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: girish@apache.org To: commits@cloudstack.apache.org Message-Id: <7c72af662ca14560a70e1a60d3411c32@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: updated refs/heads/4.3 to ac16007 Date: Sat, 16 Nov 2013 11:42:19 +0000 (UTC) Updated Branches: refs/heads/4.3 944eccaf1 -> ac160079f CLOUDSTACK-5186: Increasing the waiting time for router to come up Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/ac160079 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/ac160079 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/ac160079 Branch: refs/heads/4.3 Commit: ac160079f1d6c775eebdbc1f83bddfa423527354 Parents: 944ecca Author: Gaurav Aradhye Authored: Sat Nov 16 17:11:32 2013 +0530 Committer: Girish Shilamkar Committed: Sat Nov 16 17:11:32 2013 +0530 ---------------------------------------------------------------------- test/integration/component/test_egress_fw_rules.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/ac160079/test/integration/component/test_egress_fw_rules.py ---------------------------------------------------------------------- diff --git a/test/integration/component/test_egress_fw_rules.py b/test/integration/component/test_egress_fw_rules.py index 56ac366..6dcc2c4d 100644 --- a/test/integration/component/test_egress_fw_rules.py +++ b/test/integration/component/test_egress_fw_rules.py @@ -280,15 +280,15 @@ class TestEgressFWRules(cloudstackTestCase): self.debug("%s %s" % (script_file, exec_cmd_params)) exec_success = False - #Timeout set to 3 minutes - timeout = 180 + #Timeout set to 6 minutes + timeout = 360 while timeout: self.debug('sleep %s seconds for egress rule to affect on Router.' % self.services['sleep']) time.sleep(self.services['sleep']) result = ssh.execute("%s %s" % (script_file, exec_cmd_params)) self.debug('Result is=%s' % result) self.debug('Expected result is=%s' % expected_result) - + if str(result).strip() == expected_result: exec_success = True break @@ -301,9 +301,9 @@ class TestEgressFWRules(cloudstackTestCase): else: # Failed due to some other error break #end while - + if timeout == 0: - self.fail("Router network failed to come up after 3 minutes.") + self.fail("Router network failed to come up after 6 minutes.") ssh.execute('rm -rf %s' % script_file)