HBASE-23914 : Set hbase.client.retries.number for TestThriftHBaseServiceHandler (#1227)
Signed-off-by: Jan Hentschel <janh@apache.org>
This commit is contained in:
parent
a420f0482e
commit
48a3ccf523
|
@ -188,6 +188,7 @@ public class TestThriftHBaseServiceHandler {
|
||||||
|
|
||||||
@BeforeClass
|
@BeforeClass
|
||||||
public static void beforeClass() throws Exception {
|
public static void beforeClass() throws Exception {
|
||||||
|
UTIL.getConfiguration().set("hbase.client.retries.number", "3");
|
||||||
UTIL.startMiniCluster();
|
UTIL.startMiniCluster();
|
||||||
HTableDescriptor tableDescriptor = new HTableDescriptor(TableName.valueOf(tableAname));
|
HTableDescriptor tableDescriptor = new HTableDescriptor(TableName.valueOf(tableAname));
|
||||||
for (HColumnDescriptor family : families) {
|
for (HColumnDescriptor family : families) {
|
||||||
|
|
Loading…
Reference in New Issue