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 A1DDD9DBC for ; Tue, 9 Dec 2014 13:31:58 +0000 (UTC) Received: (qmail 17665 invoked by uid 500); 9 Dec 2014 13:31:58 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 17523 invoked by uid 500); 9 Dec 2014 13:31:58 -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 17438 invoked by uid 99); 9 Dec 2014 13:31:58 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Dec 2014 13:31:58 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id ED85DA207F6; Tue, 9 Dec 2014 13:31:57 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: talluri@apache.org To: commits@cloudstack.apache.org Date: Tue, 09 Dec 2014 13:31:59 -0000 Message-Id: <9bbd417ae50d475ba85b78cd68af996f@git.apache.org> In-Reply-To: <00e5436ab4c6473ab64c4565ba3aa3f4@git.apache.org> References: <00e5436ab4c6473ab64c4565ba3aa3f4@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [3/3] git commit: updated refs/heads/master to c4d3837 CLOUDSTACK-8053: Fix loop termination - test_vpc_host_maintenance.py Signed-off-by: SrikanteswaraRao Talluri Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/c4d38378 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/c4d38378 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/c4d38378 Branch: refs/heads/master Commit: c4d383786fb80f51861488b206ce35dd509ace65 Parents: f07c6bc Author: Gaurav Aradhye Authored: Tue Dec 9 16:45:04 2014 +0530 Committer: SrikanteswaraRao Talluri Committed: Tue Dec 9 19:01:44 2014 +0530 ---------------------------------------------------------------------- test/integration/component/maint/test_vpc_host_maintenance.py | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/c4d38378/test/integration/component/maint/test_vpc_host_maintenance.py ---------------------------------------------------------------------- diff --git a/test/integration/component/maint/test_vpc_host_maintenance.py b/test/integration/component/maint/test_vpc_host_maintenance.py index 7027469..74d59e7 100644 --- a/test/integration/component/maint/test_vpc_host_maintenance.py +++ b/test/integration/component/maint/test_vpc_host_maintenance.py @@ -221,6 +221,7 @@ class TestVMLifeCycleHostmaintenance(cloudstackTestCase): cls.hosts = Host.list(cls.api_client, clusterid=cluster.id) if len(cls.hosts) >= 2: clusterWithSufficientHosts = cluster + break if clusterWithSufficientHosts is None: raise unittest.SkipTest("No Cluster with 2 hosts found")