HBASE-25502 IntegrationTestMTTR fails with TableNotFoundException (#2879)
This commit is contained in:
parent
babcebd7c2
commit
48d9d196dc
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue