aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2013-06-10 23:39:17 +0100
committerJustin Clark-Casey (justincc)2013-06-10 23:39:17 +0100
commit7af97f88b7f493b830b46c01acc92934852cabae (patch)
treec63554eba151fbb875c76a2901033a21cb594626 /OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs
parentReinstate explicit starting and stopping of PollServiceRequestManager added i... (diff)
downloadopensim-SC_OLD-7af97f88b7f493b830b46c01acc92934852cabae.zip
opensim-SC_OLD-7af97f88b7f493b830b46c01acc92934852cabae.tar.gz
opensim-SC_OLD-7af97f88b7f493b830b46c01acc92934852cabae.tar.bz2
opensim-SC_OLD-7af97f88b7f493b830b46c01acc92934852cabae.tar.xz
Add port numbers to poll service thread names so that we can tell which belong to which HttpServer
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Servers/HttpServer/PollServiceRequestManager.cs4
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,