You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by jp...@apache.org on 2014/03/25 17:33:39 UTC

git commit: Fix harmless Ethread::schedule_in parameter mismatch

Repository: trafficserver
Updated Branches:
  refs/heads/master 059b9c845 -> 80156aece


Fix harmless Ethread::schedule_in parameter mismatch


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

Branch: refs/heads/master
Commit: 80156aecec9ac8cb24c28e720d71a721fc0f46a7
Parents: 059b9c8
Author: James Peach <jp...@apache.org>
Authored: Tue Mar 25 09:29:49 2014 -0700
Committer: James Peach <jp...@apache.org>
Committed: Tue Mar 25 09:31:31 2014 -0700

----------------------------------------------------------------------
 proxy/http/HttpClientSession.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/80156aec/proxy/http/HttpClientSession.cc
----------------------------------------------------------------------
diff --git a/proxy/http/HttpClientSession.cc b/proxy/http/HttpClientSession.cc
index 208ada6..aac7ef8 100644
--- a/proxy/http/HttpClientSession.cc
+++ b/proxy/http/HttpClientSession.cc
@@ -474,7 +474,7 @@ HttpClientSession::state_api_callout(int event, void * /* data ATS_UNUSED */)
           plugin_lock = MUTEX_TAKE_TRY_LOCK(cur_hook->m_cont->mutex, mutex->thread_holding);
           if (!plugin_lock) {
             SET_HANDLER(&HttpClientSession::state_api_callout);
-            mutex->thread_holding->schedule_in(this, HRTIME_MSECONDS(10), ET_NET);
+            mutex->thread_holding->schedule_in(this, HRTIME_MSECONDS(10));
             return 0;
           }
         } else {