Skip to content

Commit

Permalink
[XrdCl] Poller errors are fatal
Browse files Browse the repository at this point in the history
  • Loading branch information
ljanyst committed Apr 22, 2013
1 parent 70cb818 commit 8faf4bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/XrdCl/XrdClAsyncSocketHandler.hh
Expand Up @@ -94,7 +94,7 @@ namespace XrdCl
Status EnableUplink()
{
if( !pPoller->EnableWriteNotification( pSocket, true, pTimeoutResolution ) )
return Status( stError, errPollerError );
return Status( stFatal, errPollerError );
return Status();
}

Expand All @@ -104,7 +104,7 @@ namespace XrdCl
Status DisableUplink()
{
if( !pPoller->EnableWriteNotification( pSocket, false ) )
return Status( stError, errPollerError );
return Status( stFatal, errPollerError );
return Status();
}

Expand Down

0 comments on commit 8faf4bd

Please sign in to comment.