You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by da...@apache.org on 2014/05/27 10:44:48 UTC

git commit: updated refs/heads/4.4 to 92bc68d

Repository: cloudstack
Updated Branches:
  refs/heads/4.4 d298546cc -> 92bc68d1f


CLOUDSTACK-6663: Fixed Hyper-V agent fails to start on some setups. During startup agent tries
to get nic info of 0.0.0.0. To get it, it iterates through all nics and return the last NIC in
the list if it doesn't match with any IP address. In case last NIC doesn't have unicastAddress,
Hyper-V agent will fail to start. We don't need IP address during initialization. It get
initialized with startupcommand later.


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/92bc68d1
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/92bc68d1
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/92bc68d1

Branch: refs/heads/4.4
Commit: 92bc68d1f14a22f1a5b6bbf87ed349f5b440b149
Parents: d298546
Author: Anshul Gangwar <an...@citrix.com>
Authored: Wed May 14 13:18:41 2014 +0530
Committer: Daan Hoogland <da...@onecht.net>
Committed: Tue May 27 10:44:34 2014 +0200

----------------------------------------------------------------------
 .../hyperv/DotNet/ServerResource/AgentShell/AgentService.cs        | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/92bc68d1/plugins/hypervisors/hyperv/DotNet/ServerResource/AgentShell/AgentService.cs
----------------------------------------------------------------------
diff --git a/plugins/hypervisors/hyperv/DotNet/ServerResource/AgentShell/AgentService.cs b/plugins/hypervisors/hyperv/DotNet/ServerResource/AgentShell/AgentService.cs
index 9d66a5c..febd10a 100644
--- a/plugins/hypervisors/hyperv/DotNet/ServerResource/AgentShell/AgentService.cs
+++ b/plugins/hypervisors/hyperv/DotNet/ServerResource/AgentShell/AgentService.cs
@@ -72,8 +72,6 @@ namespace CloudStack.Plugin.AgentShell
             // use of VisualStudio settings designer.  The designer allows us to avoid
             // accessing config using their key strings.
             HypervResourceControllerConfig rsrcCnf = new HypervResourceControllerConfig();
-            rsrcCnf.PrivateIpAddress = AgentSettings.Default.private_ip_address;
-            rsrcCnf.GatewayIpAddress = AgentSettings.Default.gateway_ip_address;
             rsrcCnf.RootDeviceReservedSpaceBytes = AgentSettings.Default.RootDeviceReservedSpaceBytes;
             rsrcCnf.RootDeviceName = AgentSettings.Default.RootDeviceName;
             rsrcCnf.ParentPartitionMinMemoryMb = AgentSettings.Default.dom0MinMemory;