Fix failing TestReplicationEndpoint test
Signed-off-by: stack <stack@apache.org>
This commit is contained in:
parent
c92737c0e9
commit
f0dc556b71
|
@ -200,7 +200,9 @@ public class TestReplicationEndpoint extends TestReplicationBase {
|
|||
byte[] row = hri.getStartKey();
|
||||
for (int i = 0; i < 100; i++) {
|
||||
if (row.length > 0) {
|
||||
doPut(row);
|
||||
Put put = new Put(row);
|
||||
put.addColumn(famName, row, row);
|
||||
region.put(put);
|
||||
totEdits++;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue