HBASE-26928 Fix several indentation problems (#4323)
Signed-off-by: Xiaolin Ha <haxiaolin@apache.org>
(cherry picked from commit e68c61dd54
)
This commit is contained in:
parent
beed73be39
commit
5288220f2c
|
@ -497,10 +497,10 @@ public final class Encryption {
|
|||
* @return a key for the given subject
|
||||
* @throws IOException if the key is not found
|
||||
*/
|
||||
public static Key getSecretKeyForSubject(String subject, Configuration conf)
|
||||
throws IOException {
|
||||
public static Key getSecretKeyForSubject(String subject, Configuration conf) throws IOException {
|
||||
KeyProvider provider = getKeyProvider(conf);
|
||||
if (provider != null) try {
|
||||
if (provider != null) {
|
||||
try {
|
||||
Key[] keys = provider.getKeys(new String[] { subject });
|
||||
if (keys != null && keys.length > 0) {
|
||||
return keys[0];
|
||||
|
@ -508,6 +508,7 @@ public final class Encryption {
|
|||
} catch (Exception e) {
|
||||
throw new IOException(e);
|
||||
}
|
||||
}
|
||||
throw new IOException("No key found for subject '" + subject + "'");
|
||||
}
|
||||
|
||||
|
|
|
@ -290,14 +290,10 @@ public class TestCoprocessorEndpointTracing {
|
|||
final ConcurrentMap<byte[], EchoResponseProto> results = new ConcurrentHashMap<>();
|
||||
TraceUtil.trace(() -> {
|
||||
try {
|
||||
table.coprocessorService(TestProtobufRpcProto.class, null, null,
|
||||
t -> {
|
||||
table.coprocessorService(TestProtobufRpcProto.class, null, null, t -> {
|
||||
t.echo(controller, request, callback);
|
||||
return callback.get();
|
||||
},
|
||||
(region, row, result) -> {
|
||||
results.put(region, result);
|
||||
});
|
||||
}, (region, row, result) -> results.put(region, result));
|
||||
} catch (Throwable t) {
|
||||
throw new RuntimeException(t);
|
||||
}
|
||||
|
|
|
@ -223,11 +223,13 @@ public class RowResource extends ResourceBase {
|
|||
int i = 0;
|
||||
for (CellModel cell: row.getCells()) {
|
||||
byte[] col = cell.getColumn();
|
||||
if (col == null) try {
|
||||
if (col == null) {
|
||||
try {
|
||||
col = rowspec.getColumns()[i++];
|
||||
} catch (ArrayIndexOutOfBoundsException e) {
|
||||
col = null;
|
||||
}
|
||||
}
|
||||
if (col == null) {
|
||||
servlet.getMetrics().incrementFailedPutRequests(1);
|
||||
return Response.status(Response.Status.BAD_REQUEST)
|
||||
|
@ -263,13 +265,15 @@ public class RowResource extends ResourceBase {
|
|||
servlet.getMetrics().incrementFailedPutRequests(1);
|
||||
return processException(e);
|
||||
} finally {
|
||||
if (table != null) try {
|
||||
if (table != null) {
|
||||
try {
|
||||
table.close();
|
||||
} catch (IOException ioe) {
|
||||
LOG.debug("Exception received while closing the table", ioe);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// This currently supports only update of one row at a time.
|
||||
Response updateBinary(final byte[] message, final HttpHeaders headers,
|
||||
|
@ -334,13 +338,15 @@ public class RowResource extends ResourceBase {
|
|||
servlet.getMetrics().incrementFailedPutRequests(1);
|
||||
return processException(e);
|
||||
} finally {
|
||||
if (table != null) try {
|
||||
if (table != null) {
|
||||
try {
|
||||
table.close();
|
||||
} catch (IOException ioe) {
|
||||
LOG.debug("Exception received while closing the table", ioe);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@PUT
|
||||
@Consumes({MIMETYPE_XML, MIMETYPE_JSON, MIMETYPE_PROTOBUF,
|
||||
|
@ -399,10 +405,11 @@ public class RowResource extends ResourceBase {
|
|||
.build();
|
||||
}
|
||||
Delete delete = null;
|
||||
if (rowspec.hasTimestamp())
|
||||
if (rowspec.hasTimestamp()) {
|
||||
delete = new Delete(rowspec.getRow(), rowspec.getTimestamp());
|
||||
else
|
||||
} else {
|
||||
delete = new Delete(rowspec.getRow());
|
||||
}
|
||||
|
||||
for (byte[] column: rowspec.getColumns()) {
|
||||
byte[][] split = CellUtil.parseColumn(column);
|
||||
|
@ -440,12 +447,14 @@ public class RowResource extends ResourceBase {
|
|||
servlet.getMetrics().incrementFailedDeleteRequests(1);
|
||||
return processException(e);
|
||||
} finally {
|
||||
if (table != null) try {
|
||||
if (table != null) {
|
||||
try {
|
||||
table.close();
|
||||
} catch (IOException ioe) {
|
||||
LOG.debug("Exception received while closing the table", ioe);
|
||||
}
|
||||
}
|
||||
}
|
||||
return Response.ok().build();
|
||||
}
|
||||
|
||||
|
@ -557,13 +566,15 @@ public class RowResource extends ResourceBase {
|
|||
servlet.getMetrics().incrementFailedPutRequests(1);
|
||||
return processException(e);
|
||||
} finally {
|
||||
if (table != null) try {
|
||||
if (table != null) {
|
||||
try {
|
||||
table.close();
|
||||
} catch (IOException ioe) {
|
||||
LOG.debug("Exception received while closing the table", ioe);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Validates the input request parameters, parses columns from CellSetModel,
|
||||
|
@ -687,13 +698,15 @@ public class RowResource extends ResourceBase {
|
|||
servlet.getMetrics().incrementFailedDeleteRequests(1);
|
||||
return processException(e);
|
||||
} finally {
|
||||
if (table != null) try {
|
||||
if (table != null) {
|
||||
try {
|
||||
table.close();
|
||||
} catch (IOException ioe) {
|
||||
LOG.debug("Exception received while closing the table", ioe);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Validates the input request parameters, parses columns from CellSetModel,
|
||||
|
@ -781,13 +794,15 @@ public class RowResource extends ResourceBase {
|
|||
servlet.getMetrics().incrementFailedAppendRequests(1);
|
||||
return processException(e);
|
||||
} finally {
|
||||
if (table != null) try {
|
||||
if (table != null) {
|
||||
try {
|
||||
table.close();
|
||||
} catch (IOException ioe) {
|
||||
LOG.debug("Exception received while closing the table" + table.getName(), ioe);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Validates the input request parameters, parses columns from CellSetModel,
|
||||
|
@ -878,7 +893,8 @@ public class RowResource extends ResourceBase {
|
|||
servlet.getMetrics().incrementFailedIncrementRequests(1);
|
||||
return processException(e);
|
||||
} finally {
|
||||
if (table != null) try {
|
||||
if (table != null) {
|
||||
try {
|
||||
table.close();
|
||||
} catch (IOException ioe) {
|
||||
LOG.debug("Exception received while closing the table " + table.getName(), ioe);
|
||||
|
@ -886,3 +902,4 @@ public class RowResource extends ResourceBase {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -141,9 +141,9 @@ public class TestRefreshRecoveredReplication extends TestReplicationBase {
|
|||
Replication replication = (Replication)otherServer.getReplicationSourceService();
|
||||
UTIL1.waitFor(60000, () -> !replication.getReplicationManager().getOldSources().isEmpty());
|
||||
// Wait on only one server being up.
|
||||
UTIL1.waitFor(60000, () ->
|
||||
// Have to go back to source here because getLiveRegionServerThreads makes new array each time
|
||||
UTIL1.getMiniHBaseCluster().getLiveRegionServerThreads().size() == NUM_SLAVES1 - 1);
|
||||
UTIL1.waitFor(60000,
|
||||
() -> UTIL1.getMiniHBaseCluster().getLiveRegionServerThreads().size() == NUM_SLAVES1 - 1);
|
||||
UTIL1.waitTableAvailable(tablename);
|
||||
LOG.info("Available {}", tablename);
|
||||
|
||||
|
|
Loading…
Reference in New Issue