YARN-5875. TestTokenClientRMService#testTokenRenewalWrongUser fails. Contributed by Gergely Novák.

(cherry picked from commit d5c396ccb361e1a0cf4307ce1d1b37fae0eec250)
This commit is contained in:
Xiao Chen 2016-11-15 13:54:51 -08:00
parent 15f08e9298
commit fc4c0595be
1 changed files with 3 additions and 2 deletions

View File

@ -123,8 +123,9 @@ public Void run() throws Exception {
return null;
} catch (YarnException ex) {
Assert.assertTrue(ex.getMessage().contains(
owner.getUserName() + " tries to renew a token with renewer "
+ other.getUserName()));
owner.getUserName() + " tries to renew a token"));
Assert.assertTrue(ex.getMessage().contains(
"with non-matching renewer " + other.getUserName()));
throw ex;
}
}