Add port numbers to poll service thread names so that we can tell which belong to which HttpServer
parent
32d1e50565
commit
7af97f88b7
|
@ -76,7 +76,7 @@ namespace OpenSim.Framework.Servers.HttpServer
|
||||||
m_workerThreads[i]
|
m_workerThreads[i]
|
||||||
= Watchdog.StartThread(
|
= Watchdog.StartThread(
|
||||||
PoolWorkerJob,
|
PoolWorkerJob,
|
||||||
String.Format("PollServiceWorkerThread{0}", i),
|
string.Format("PollServiceWorkerThread{0}:{1}", i, m_server.Port),
|
||||||
ThreadPriority.Normal,
|
ThreadPriority.Normal,
|
||||||
false,
|
false,
|
||||||
false,
|
false,
|
||||||
|
@ -86,7 +86,7 @@ namespace OpenSim.Framework.Servers.HttpServer
|
||||||
|
|
||||||
m_retrysThread = Watchdog.StartThread(
|
m_retrysThread = Watchdog.StartThread(
|
||||||
this.CheckRetries,
|
this.CheckRetries,
|
||||||
"PollServiceWatcherThread",
|
string.Format("PollServiceWatcherThread:{0}", m_server.Port),
|
||||||
ThreadPriority.Normal,
|
ThreadPriority.Normal,
|
||||||
false,
|
false,
|
||||||
true,
|
true,
|
||||||
|
|
Loading…
Reference in New Issue