You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by sh...@apache.org on 2015/05/17 19:44:32 UTC

trafficserver git commit: TS-3610: Accidently left in logic to simplify memory use debugging. Had committed out the delay before releasing config on reload. Not entirely sure why this is needed, but this change is not relevant to the rest of the chang

Repository: trafficserver
Updated Branches:
  refs/heads/master 83ed6668d -> 90debbe2d


TS-3610:  Accidently left in logic to simplify memory use debugging.  Had committed out the delay before releasing config on reload.  Not entirely sure why this is needed, but this change is not relevant to the rest of the changes for TS-3610.


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

Branch: refs/heads/master
Commit: 90debbe2dab309156adf7e62f03ab362384aa3d2
Parents: 83ed666
Author: shinrich <sh...@yahoo-inc.com>
Authored: Sun May 17 12:43:04 2015 -0500
Committer: shinrich <sh...@yahoo-inc.com>
Committed: Sun May 17 12:43:04 2015 -0500

----------------------------------------------------------------------
 mgmt/ProxyConfig.cc | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/90debbe2/mgmt/ProxyConfig.cc
----------------------------------------------------------------------
diff --git a/mgmt/ProxyConfig.cc b/mgmt/ProxyConfig.cc
index 9f2e75a..09545e2 100644
--- a/mgmt/ProxyConfig.cc
+++ b/mgmt/ProxyConfig.cc
@@ -161,8 +161,7 @@ ConfigProcessor::set(unsigned int id, ConfigInfo *info, unsigned timeout_secs)
     // The ConfigInfoReleaser now takes our refcount, but
     // someother thread might also have one ...
     ink_assert(old_info->refcount() > 0);
-    configProcessor.release(id, old_info);
-    //eventProcessor.schedule_in(new ConfigInfoReleaser(id, old_info), HRTIME_SECONDS(timeout_secs));
+    eventProcessor.schedule_in(new ConfigInfoReleaser(id, old_info), HRTIME_SECONDS(timeout_secs));
   }
 
   return id;