зеркало из https://github.com/microsoft/AMBROSIA.git
Adding command line params for service names for HelloWorld
This commit is contained in:
Родитель
588f27dbc7
Коммит
82e87f8c53
|
@ -16,6 +16,7 @@ namespace UnsafeDeregisterService
|
|||
Console.WriteLine("UnsafeDeregisterInstance InstanceName");
|
||||
Console.WriteLine("WARNING: This is a metadata hacking tool that should NEVER be used on a real deployment");
|
||||
Console.WriteLine("This tool is a convenience for developers who want to more easily test certain application modfications");
|
||||
Console.WriteLine("Usage: UnsafeDeregisterInstance InstanceName");
|
||||
return;
|
||||
}
|
||||
var client = new CRAClientLibrary(Environment.GetEnvironmentVariable("AZURE_STORAGE_CONN_STRING"));
|
||||
|
|
|
@ -46,8 +46,18 @@ namespace Client1
|
|||
|
||||
int receivePort = 1001;
|
||||
int sendPort = 1000;
|
||||
string clientInstanceName = "jgclient1";
|
||||
string serverInstanceName = "jgserver1";
|
||||
string clientInstanceName = "client1";
|
||||
string serverInstanceName = "server1";
|
||||
|
||||
if (args.Length >= 1)
|
||||
{
|
||||
clientInstanceName = args[0];
|
||||
}
|
||||
|
||||
if (args.Length == 2)
|
||||
{
|
||||
serverInstanceName = args[1];
|
||||
}
|
||||
|
||||
using (var c = AmbrosiaFactory.Deploy<IClient1>(clientInstanceName, new Client1(serverInstanceName), receivePort, sendPort))
|
||||
{
|
||||
|
|
|
@ -71,8 +71,18 @@ namespace Client2
|
|||
|
||||
int receivePort = 1001;
|
||||
int sendPort = 1000;
|
||||
string clientInstanceName = "jgclient1";
|
||||
string serverInstanceName = "jgserver1";
|
||||
string clientInstanceName = "client1";
|
||||
string serverInstanceName = "server1";
|
||||
|
||||
if (args.Length >= 1)
|
||||
{
|
||||
clientInstanceName = args[0];
|
||||
}
|
||||
|
||||
if (args.Length == 2)
|
||||
{
|
||||
serverInstanceName = args[1];
|
||||
}
|
||||
|
||||
Client2 client = new Client2(serverInstanceName);
|
||||
using (var c = AmbrosiaFactory.Deploy<IClient2>(clientInstanceName, client, receivePort, sendPort))
|
||||
|
|
|
@ -36,7 +36,13 @@ namespace Server
|
|||
{
|
||||
int receivePort = 2001;
|
||||
int sendPort = 2000;
|
||||
string serviceName = "jgserver1";
|
||||
string serviceName = "server1";
|
||||
|
||||
if (args.Length == 1)
|
||||
{
|
||||
serviceName = args[0];
|
||||
}
|
||||
|
||||
using (var c = AmbrosiaFactory.Deploy<IServer>(serviceName, new Server(), receivePort, sendPort))
|
||||
{
|
||||
Thread.Sleep(14 * 24 * 3600 * 1000);
|
||||
|
|
Загрузка…
Ссылка в новой задаче