change toInclusice in terms api to default to true instead of false
This commit is contained in:
parent
d36f376a8e
commit
3f033a04e7
|
@ -38,7 +38,7 @@ public class ShardTermsRequest extends BroadcastShardOperationRequest {
|
|||
|
||||
private boolean fromInclusive = true;
|
||||
|
||||
private boolean toInclusive = false;
|
||||
private boolean toInclusive = true;
|
||||
|
||||
private String prefix;
|
||||
|
||||
|
|
|
@ -111,7 +111,7 @@ public class TermsRequest extends BroadcastOperationRequest {
|
|||
|
||||
private String to;
|
||||
|
||||
private boolean toInclusive = false;
|
||||
private boolean toInclusive = true;
|
||||
|
||||
private String prefix;
|
||||
|
||||
|
|
Loading…
Reference in New Issue