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/lua_config
Commit: 80156aecec9ac8cb24c28e720d71a721fc0f46a7
Parents: 059b9c8
Author: James Peach <[email protected]>
Authored: Tue Mar 25 09:29:49 2014 -0700
Committer: James Peach <[email protected]>
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 {

Reply via email to