fixed formating
This commit is contained in:
parent
5ca6800085
commit
9744e2c8d0
1 changed files with 2 additions and 1 deletions
|
|
@ -623,7 +623,8 @@ public class DynamoDBLeaseRefresher implements LeaseRefresher {
|
||||||
return cachedTotalSegments;
|
return cachedTotalSegments;
|
||||||
}
|
}
|
||||||
|
|
||||||
int parallelScanTotalSegments = cachedTotalSegments == null ? DEFAULT_LEASE_TABLE_SCAN_PARALLELISM_FACTOR : cachedTotalSegments;
|
int parallelScanTotalSegments =
|
||||||
|
cachedTotalSegments == null ? DEFAULT_LEASE_TABLE_SCAN_PARALLELISM_FACTOR : cachedTotalSegments;
|
||||||
final DescribeTableResponse describeTableResponse = describeLeaseTable();
|
final DescribeTableResponse describeTableResponse = describeLeaseTable();
|
||||||
if (describeTableResponse == null) {
|
if (describeTableResponse == null) {
|
||||||
log.info("DescribeTable returned null so using default totalSegments : {}", parallelScanTotalSegments);
|
log.info("DescribeTable returned null so using default totalSegments : {}", parallelScanTotalSegments);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue