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 DB0F010F67 for ; Fri, 27 Dec 2013 09:47:07 +0000 (UTC) Received: (qmail 12353 invoked by uid 500); 27 Dec 2013 09:47:07 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 12144 invoked by uid 500); 27 Dec 2013 09:47:05 -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 12137 invoked by uid 99); 27 Dec 2013 09:47:03 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Dec 2013 09:47:03 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 39E4481A8F6; Fri, 27 Dec 2013 09:47:03 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: devdeep@apache.org To: commits@cloudstack.apache.org Message-Id: <91de4716a36c4ba484b4747fe6d9d660@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: updated refs/heads/4.3 to f908a15 Date: Fri, 27 Dec 2013 09:47:03 +0000 (UTC) Updated Branches: refs/heads/4.3 ed113474e -> f908a1575 CLOUDSTACK-5649: Vms are stopped and not migrated from a host when the host is put in maintenance mode. The migrate flag wasn't set to true in the maintain answer. This caused cloudstack to not to schedule a migration work item for vms on the host. Made a change to set the migrate flag to true in migrate answer. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/f908a157 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/f908a157 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/f908a157 Branch: refs/heads/4.3 Commit: f908a157580cdb01dcd7f52e7afde3ed87c64c66 Parents: ed11347 Author: Devdeep Singh Authored: Fri Dec 27 22:15:34 2013 +0530 Committer: Devdeep Singh Committed: Fri Dec 27 15:17:41 2013 +0530 ---------------------------------------------------------------------- .../ServerResource/HypervResource/HypervResourceController.cs | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/f908a157/plugins/hypervisors/hyperv/DotNet/ServerResource/HypervResource/HypervResourceController.cs ---------------------------------------------------------------------- diff --git a/plugins/hypervisors/hyperv/DotNet/ServerResource/HypervResource/HypervResourceController.cs b/plugins/hypervisors/hyperv/DotNet/ServerResource/HypervResource/HypervResourceController.cs index d4d7e47..905a741 100644 --- a/plugins/hypervisors/hyperv/DotNet/ServerResource/HypervResource/HypervResourceController.cs +++ b/plugins/hypervisors/hyperv/DotNet/ServerResource/HypervResource/HypervResourceController.cs @@ -1200,6 +1200,7 @@ namespace HypervResource object ansContent = new { result = true, + willMigrate = true, details = "success - NOP for MaintainCommand", _reconnect = false, contextMap = contextMap