diff options
Diffstat (limited to 'OpenSim/Framework/Servers')
-rw-r--r-- | OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs b/OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs index ef35886..aee3e3c 100644 --- a/OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs +++ b/OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs | |||
@@ -76,7 +76,7 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
76 | m_workerThreads[i] | 76 | m_workerThreads[i] |
77 | = Watchdog.StartThread( | 77 | = Watchdog.StartThread( |
78 | PoolWorkerJob, | 78 | PoolWorkerJob, |
79 | String.Format("PollServiceWorkerThread{0}", i), | 79 | string.Format("PollServiceWorkerThread{0}:{1}", i, m_server.Port), |
80 | ThreadPriority.Normal, | 80 | ThreadPriority.Normal, |
81 | false, | 81 | false, |
82 | false, | 82 | false, |
@@ -86,7 +86,7 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
86 | 86 | ||
87 | m_retrysThread = Watchdog.StartThread( | 87 | m_retrysThread = Watchdog.StartThread( |
88 | this.CheckRetries, | 88 | this.CheckRetries, |
89 | "PollServiceWatcherThread", | 89 | string.Format("PollServiceWatcherThread:{0}", m_server.Port), |
90 | ThreadPriority.Normal, | 90 | ThreadPriority.Normal, |
91 | false, | 91 | false, |
92 | true, | 92 | true, |