HBASE-25502 IntegrationTestMTTR fails with TableNotFoundException (#2879)

This commit is contained in:
Pankaj 2021-01-14 00:31:26 +05:30 committed by GitHub
parent babcebd7c2
commit 48d9d196dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -233,8 +233,7 @@ public class IntegrationTestMTTR {
}
// Create the table. If this fails then fail everything.
TableDescriptor tableDescriptor = util.getAdmin().getDescriptor(tableName);
TableDescriptorBuilder builder = TableDescriptorBuilder.newBuilder(tableDescriptor);
TableDescriptorBuilder builder = TableDescriptorBuilder.newBuilder(tableName);
// Make the max file size huge so that splits don't happen during the test.
builder.setMaxFileSize(Long.MAX_VALUE);