Skip to content

Commit

Permalink
c
Browse files Browse the repository at this point in the history
  • Loading branch information
924060929 committed Dec 20, 2024
1 parent 33e52d1 commit 197aa64
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion conf/be.conf
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,3 @@ sys_log_level = INFO
aws_log_level=0
## If you are not running in aws cloud, you can disable EC2 metadata
AWS_EC2_METADATA_DISABLED=true
enable_table_size_correctness_check=false
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ public static class PartitionItemAndRange<K> {

public PartitionItemAndRange(K id, PartitionItem partitionItem, Range<MultiColumnBound> range) {
this.id = id;
this.partitionItem = partitionItem;
this.range = range;
this.partitionItem = Objects.requireNonNull(partitionItem, "partitionItem can not be null");
this.range = Objects.requireNonNull(range, "range can not be null");
}

@Override
Expand All @@ -66,7 +66,7 @@ public static class PartitionItemAndId<K> {

public PartitionItemAndId(K id, PartitionItem partitionItem) {
this.id = id;
this.partitionItem = partitionItem;
this.partitionItem = Objects.requireNonNull(partitionItem, "partitionItem can not be null");
}
}
}

0 comments on commit 197aa64

Please sign in to comment.