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

git commit: updated refs/heads/4.4-forward to b85f687

Repository: cloudstack
Updated Branches:
  refs/heads/4.4-forward 60b82abe2 -> b85f687cd


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/b85f687c
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/b85f687c
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/b85f687c

Branch: refs/heads/4.4-forward
Commit: b85f687cd7f12cd14a1feeb80593ba55e05b2fa8
Parents: 60b82ab
Author: Anshul Gangwar <an...@citrix.com>
Authored: Wed May 14 13:18:41 2014 +0530
Committer: Devdeep Singh <de...@gmail.com>
Committed: Tue May 27 11:59:07 2014 +0530

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


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/b85f687c/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;