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]
|
||||
= Watchdog.StartThread(
|
||||
PoolWorkerJob,
|
||||
String.Format("PollServiceWorkerThread{0}", i),
|
||||
string.Format("PollServiceWorkerThread{0}:{1}", i, m_server.Port),
|
||||
ThreadPriority.Normal,
|
||||
false,
|
||||
false,
|
||||
|
@ -86,7 +86,7 @@ namespace OpenSim.Framework.Servers.HttpServer
|
|||
|
||||
m_retrysThread = Watchdog.StartThread(
|
||||
this.CheckRetries,
|
||||
"PollServiceWatcherThread",
|
||||
string.Format("PollServiceWatcherThread:{0}", m_server.Port),
|
||||
ThreadPriority.Normal,
|
||||
false,
|
||||
true,
|
||||
|
|
Loading…
Reference in New Issue