You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2013/04/03 18:14:17 UTC

git commit: TS-1067 Fix the code around the proxy.config.udp.theads option

Updated Branches:
  refs/heads/master c95298dfc -> ce3ab8ce5


TS-1067 Fix the code around the proxy.config.udp.theads option


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/ce3ab8ce
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/ce3ab8ce
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/ce3ab8ce

Branch: refs/heads/master
Commit: ce3ab8ce56ad505dd7584312bb0d309e0879f004
Parents: c95298d
Author: Leif Hedstrom <zw...@apache.org>
Authored: Wed Apr 3 10:14:11 2013 -0600
Committer: Leif Hedstrom <zw...@apache.org>
Committed: Wed Apr 3 10:14:11 2013 -0600

----------------------------------------------------------------------
 proxy/Main.cc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/ce3ab8ce/proxy/Main.cc
----------------------------------------------------------------------
diff --git a/proxy/Main.cc b/proxy/Main.cc
index 05c3bc4..9cff6f3 100644
--- a/proxy/Main.cc
+++ b/proxy/Main.cc
@@ -1639,7 +1639,7 @@ main(int argc, char **argv)
 
     // UDP net-threads are turned off by default.
     if (!num_of_udp_threads)
-      TS_ReadConfigInteger(num_of_udp_threads, "proxy.config.ssl.number.threads");
+      TS_ReadConfigInteger(num_of_udp_threads, "proxy.config.udp.threads");
     if (num_of_udp_threads)
       udpNet.start(num_of_udp_threads);