Skip to content

Commit

Permalink
[XrdCl] Respect ignore action on virtual redirect.
Browse files Browse the repository at this point in the history
  • Loading branch information
simonmichal committed Feb 15, 2019
1 parent b9bfaf0 commit e0edbec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/XrdCl/XrdClRedirectorRegistry.cc
Expand Up @@ -21,8 +21,8 @@ void RedirectJob::Run( void *arg )
{
Message *msg = reinterpret_cast<Message*>( arg );
// this makes sure the handler takes ownership of the new message
pHandler->Examine( msg );
pHandler->Process( msg );
if( pHandler->Examine( msg ) != IncomingMsgHandler::Action::Ignore )
pHandler->Process( msg );
delete this;
}

Expand Down

0 comments on commit e0edbec

Please sign in to comment.