Description
treat all exceptions as failure in testFSRMStateStoreClientRetry.
Currently the exception "could only be replicated to 0 nodes instead of minReplication (=1)" is not treated as failure in testFSRMStateStoreClientRetry.
// TODO 0 datanode exception will not be retried by dfs client, fix // that separately. if (!e.getMessage().contains("could only be replicated" + " to 0 nodes instead of minReplication (=1)")) { assertionFailedInThread.set(true); }
With YARN-2820(Retry in FileSystemRMStateStore), we needn't treat this exception specially. We can remove the check and treat all exceptions as failure in testFSRMStateStoreClientRetry.