HBASE-24755 [LOG][RSGroup]Error message is confusing while adding a offline RS to rsgroup (#2846)
Signed-off-by: Viraj Jasani <vjasani@apache.org> Signed-off-by: Wellington Chevreuil <wchevreuil@apache.org>
This commit is contained in:
parent
bedb45d4ac
commit
a414361ed9
|
@ -1233,9 +1233,9 @@ final class RSGroupInfoManagerImpl implements RSGroupInfoManager {
|
|||
Address firstServer = servers.iterator().next();
|
||||
RSGroupInfo srcGrp = getRSGroupOfServer(firstServer);
|
||||
if (srcGrp == null) {
|
||||
// Be careful. This exception message is tested for in TestRSGroupsBase...
|
||||
throw new ConstraintException("Source RSGroup for server " + firstServer
|
||||
+ " does not exist.");
|
||||
// Be careful. This exception message is tested for in TestRSGroupAdmin2...
|
||||
throw new ConstraintException("Server " + firstServer
|
||||
+ " is either offline or it does not exist.");
|
||||
}
|
||||
|
||||
// Only move online servers (when moving from 'default') or servers from other
|
||||
|
|
|
@ -189,7 +189,7 @@ public class TestRSGroupsAdmin2 extends TestRSGroupsBase {
|
|||
ADMIN.moveServersToRSGroup(Sets.newHashSet(Address.fromString("foo:9999")), "foo");
|
||||
fail("Bogus servers shouldn't have been successfully moved.");
|
||||
} catch (IOException ex) {
|
||||
String exp = "Source RSGroup for server foo:9999 does not exist.";
|
||||
String exp = "Server foo:9999 is either offline or it does not exist.";
|
||||
String msg = "Expected '" + exp + "' in exception message: ";
|
||||
assertTrue(msg + " " + ex.getMessage(), ex.getMessage().contains(exp));
|
||||
}
|
||||
|
@ -337,7 +337,7 @@ public class TestRSGroupsAdmin2 extends TestRSGroupsBase {
|
|||
ADMIN.setRSGroup(Sets.newHashSet(tableName), newGroup.getName());
|
||||
fail("Bogus servers shouldn't have been successfully moved.");
|
||||
} catch (IOException ex) {
|
||||
String exp = "Source RSGroup for server foo:9999 does not exist.";
|
||||
String exp = "Server foo:9999 is either offline or it does not exist.";
|
||||
String msg = "Expected '" + exp + "' in exception message: ";
|
||||
assertTrue(msg + " " + ex.getMessage(), ex.getMessage().contains(exp));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue