remove not needed sslport parameter

This commit is contained in:
UbitUmarov
2016-12-08 23:39:55 +00:00
parent 55c04a2410
commit 806e75eefb
3 changed files with 11 additions and 11 deletions

View File

@@ -59,13 +59,12 @@ namespace OpenSim.Region.ClientStack.Linden.Tests
base.SetUp();
uint port = 9999;
uint sslPort = 9998;
// This is an unfortunate bit of clean up we have to do because MainServer manages things through static
// variables and the VM is not restarted between tests.
MainServer.RemoveHttpServer(port);
BaseHttpServer server = new BaseHttpServer(port, false, sslPort, "","","");
BaseHttpServer server = new BaseHttpServer(port, false, "","","");
MainServer.AddHttpServer(server);
MainServer.Instance = server;