Skip to content
Snippets Groups Projects
Commit 8386e231 authored by jakubs's avatar jakubs
Browse files

BIS-587 SP-1036 improve robustness of auto-recovery by not treating errors as...

BIS-587 SP-1036 improve robustness of auto-recovery by not treating errors as not-recoverable by default

SVN: 30180
parent 5ac5b231
No related branches found
No related tags found
No related merge requests found
......@@ -190,7 +190,14 @@ public class DataSetStorageRecoveryManager implements IDataSetStorageRecoveryMan
@Override
public boolean canRecoverFromError(Throwable ex)
{
return HighLevelException.isRetriable(ex);
if (ex instanceof HighLevelException)
{
return HighLevelException.isRetriable(ex);
}
else
{
return true;
}
}
@Override
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment