This is an automated email from the ASF dual-hosted git repository. mayanks pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git
The following commit(s) were added to refs/heads/master by this push: new 0102227 Fix package for ReplicationUtils. (#7135) 0102227 is described below commit 01022271614af6fcaa060ad6276c01b63229d5f3 Author: Mayank Shrivastava <maya...@apache.org> AuthorDate: Wed Jul 7 14:13:56 2021 -0700 Fix package for ReplicationUtils. (#7135) The class `ReplicationUtils` sits in `pinot-segment-local` module, however, the file states the package as `orig.apache.pinot.core.utils`. This PR fixes the incorrect package. --- .../java/org/apache/pinot/segment/local/utils/ReplicationUtils.java | 2 +- .../java/org/apache/pinot/segment/local/utils/TableConfigUtils.java | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/utils/ReplicationUtils.java b/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/utils/ReplicationUtils.java index 1edf233..2b57bc9 100644 --- a/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/utils/ReplicationUtils.java +++ b/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/utils/ReplicationUtils.java @@ -16,7 +16,7 @@ * specific language governing permissions and limitations * under the License. */ -package org.apache.pinot.core.util; +package org.apache.pinot.segment.local.utils; import org.apache.pinot.spi.config.table.SegmentsValidationAndRetentionConfig; import org.apache.pinot.spi.config.table.TableConfig; diff --git a/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/utils/TableConfigUtils.java b/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/utils/TableConfigUtils.java index 63a59a0..9c77f35 100644 --- a/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/utils/TableConfigUtils.java +++ b/pinot-segment-local/src/main/java/org/apache/pinot/segment/local/utils/TableConfigUtils.java @@ -32,7 +32,6 @@ import org.apache.commons.collections.CollectionUtils; import org.apache.commons.collections.MapUtils; import org.apache.pinot.common.tier.TierFactory; import org.apache.pinot.common.utils.config.TagNameUtils; -import org.apache.pinot.core.util.ReplicationUtils; import org.apache.pinot.segment.local.function.FunctionEvaluator; import org.apache.pinot.segment.local.function.FunctionEvaluatorFactory; import org.apache.pinot.segment.spi.index.startree.AggregationFunctionColumnPair; --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org