summaryrefslogtreecommitdiff
path: root/cs/test/Ice/faultTolerance/Server.cs
diff options
context:
space:
mode:
Diffstat (limited to 'cs/test/Ice/faultTolerance/Server.cs')
-rwxr-xr-xcs/test/Ice/faultTolerance/Server.cs28
1 files changed, 14 insertions, 14 deletions
diff --git a/cs/test/Ice/faultTolerance/Server.cs b/cs/test/Ice/faultTolerance/Server.cs
index 96a20dac3c1..f6bceb9fd61 100755
--- a/cs/test/Ice/faultTolerance/Server.cs
+++ b/cs/test/Ice/faultTolerance/Server.cs
@@ -68,21 +68,21 @@ public class Server
try
{
- //
- // In this test, we need longer server idle time,
- // otherwise our test servers may time out before they are
- // used in the test.
- //
- Ice.InitializationData initData = new Ice.InitializationData();
- initData.properties = Ice.Util.createProperties(ref args);
- initData.properties.setProperty("Ice.ServerIdleTime", "120"); // Two minutes
+ //
+ // In this test, we need longer server idle time,
+ // otherwise our test servers may time out before they are
+ // used in the test.
+ //
+ Ice.InitializationData initData = new Ice.InitializationData();
+ initData.properties = Ice.Util.createProperties(ref args);
+ initData.properties.setProperty("Ice.ServerIdleTime", "120"); // Two minutes
communicator = Ice.Util.initialize(ref args, initData);
status = run(args, communicator);
}
catch(System.Exception ex)
{
- System.Console.Error.WriteLine(ex);
+ System.Console.Error.WriteLine(ex);
status = 1;
}
@@ -94,14 +94,14 @@ public class Server
}
catch(Ice.LocalException ex)
{
- System.Console.Error.WriteLine(ex);
+ System.Console.Error.WriteLine(ex);
status = 1;
}
}
- if(status != 0)
- {
- System.Environment.Exit(status);
- }
+ if(status != 0)
+ {
+ System.Environment.Exit(status);
+ }
}
}