Merge branch 'master' of github.com:coolmay/whpc-linux-communicator

This commit is contained in:
evanc 2015-07-22 05:49:16 -07:00
Родитель 6c76db9841 ae6c343054
Коммит 1b116d2813
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -11,6 +11,7 @@ using System.Net;
using Microsoft.Hpc.Scheduler.Properties;
using System.Xml.Linq;
using System.Security.Principal;
using System.Globalization;
namespace Microsoft.Hpc.Communicators.LinuxCommunicator
{
@ -101,7 +102,6 @@ namespace Microsoft.Hpc.Communicators.LinuxCommunicator
}
return false;
}
public bool Initialize()
@ -453,7 +453,7 @@ namespace Microsoft.Hpc.Communicators.LinuxCommunicator
private string GetCallbackUri(string nodeName, string action)
{
return string.Format("{0}/api/{1}/{2}", this.server.ListeningUri, nodeName, action);
return string.Format("{0}/api/{1}/{2}", string.Format(CultureInfo.InvariantCulture, WebServer.LinuxCommunicatorUriTemplate, Environment.MachineName), nodeName, action);
}
public void OnRegisterRequested(RegisterEventArgs registerEventArgs)

Просмотреть файл

@ -28,7 +28,7 @@ namespace Microsoft.Hpc.Communicators.LinuxCommunicator
throw new InvalidOperationException("The current system doesn't have a non-NDMA network");
}
this.ListeningUri = string.Format(LinuxCommunicatorUriTemplate, nonDirectNetIp.ToString());
this.ListeningUri = string.Format(LinuxCommunicatorUriTemplate, "*");
}
public void Dispose()