Skip to content

Commit

Permalink
[XrdCl] Process virtual rederections in the threadpool.
Browse files Browse the repository at this point in the history
  • Loading branch information
simonmichal committed Jun 21, 2017
1 parent f319725 commit eb65f02
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/XrdCl/XrdClChannel.cc
Expand Up @@ -299,10 +299,8 @@ namespace XrdCl

if( redirector )
{
XRootDStatus st = redirector->HandleRequest( msg, pStreams[path.down] );
if( st.IsOK() )
handler->OnStatusReady( msg, Status() );
return st;
handler->OnStatusReady( msg, Status() );
return redirector->HandleRequest( msg, pStreams[path.down] );
}

return pStreams[path.up]->Send( msg, handler, stateful, expires );
Expand Down

0 comments on commit eb65f02

Please sign in to comment.