Skip to content

Commit

Permalink
Cleanup: Remove remaining occurrences of incubator. (#8023)
Browse files Browse the repository at this point in the history
Removed occurrences of `incubator` from the code base.
- Was mostly used in GH links to Pinot landing page, or issues, etc.
- This links were still working today as `incubator-pinot` gets redirected to `pinot`.
  • Loading branch information
mayankshriv authored Jan 14, 2022
1 parent eaa5180 commit 1d1a7d3
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ private void setupSwagger() {
BeanConfig beanConfig = new BeanConfig();
beanConfig.setTitle("Pinot Broker API");
beanConfig.setDescription("APIs for accessing Pinot broker information");
beanConfig.setContact("https://github.com/apache/incubator-pinot");
beanConfig.setContact("https://github.com/apache/pinot");
beanConfig.setVersion("1.0");
beanConfig.setSchemes(new String[]{CommonConstants.HTTP_PROTOCOL, CommonConstants.HTTPS_PROTOCOL});
beanConfig.setBasePath("/");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public void testInvalidRelativeURIs()
}

// Don't lose authority portion of inputDirURI when creating output files
// https://github.com/apache/incubator-pinot/issues/6355
// https://github.com/apache/pinot/issues/6355

@Test
public void testGetFileURI()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ private void setupSwagger(HttpServer httpServer) {
BeanConfig beanConfig = new BeanConfig();
beanConfig.setTitle("Pinot Controller API");
beanConfig.setDescription("APIs for accessing Pinot Controller information");
beanConfig.setContact("https://github.com/apache/incubator-pinot");
beanConfig.setContact("https://github.com/apache/pinot");
beanConfig.setVersion("1.0");
beanConfig.setSchemes(new String[]{CommonConstants.HTTP_PROTOCOL, CommonConstants.HTTPS_PROTOCOL});
beanConfig.setBasePath("/");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2594,7 +2594,7 @@ private PinotResourceManagerResponse enableInstance(String instanceName, boolean
// TODO: Handle the case when realtime segments are in OFFLINE state because there're some problem with
// realtime segment consumption,
// and realtime segment will mark itself as OFFLINE in ideal state.
// Issue: https://github.com/apache/incubator-pinot/issues/4653
// Issue: https://github.com/apache/pinot/issues/4653
if ((enableInstance && !offlineState.equals(state)) || (!enableInstance && offlineState.equals(state))) {
toggleSucceeded = false;
break;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ private void setupSwagger() {
BeanConfig beanConfig = new BeanConfig();
beanConfig.setTitle("Pinot Minion API");
beanConfig.setDescription("APIs for accessing Pinot Minion information");
beanConfig.setContact("https://github.com/apache/incubator-pinot");
beanConfig.setContact("https://github.com/apache/pinot");
beanConfig.setVersion("1.0");
beanConfig.setSchemes(new String[]{CommonConstants.HTTP_PROTOCOL, CommonConstants.HTTPS_PROTOCOL});
beanConfig.setBasePath("/");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -956,7 +956,7 @@ private int getOrCreateDocId() {
int i = 0;
int[] dictIds = new int[_numKeyColumns]; // dimensions + date time columns + time column.

// FIXME: this for loop breaks for multi value dimensions. https://github.com/apache/incubator-pinot/issues/3867
// FIXME: this for loop breaks for multi value dimensions. https://github.com/apache/pinot/issues/3867
for (FieldSpec fieldSpec : _physicalDimensionFieldSpecs) {
dictIds[i++] = _indexContainerMap.get(fieldSpec.getName())._dictId;
}
Expand All @@ -973,7 +973,7 @@ private int getOrCreateDocId() {
* <li> All dimensions and time are dictionary encoded. This is because an integer array containing dictionary id's
* is used as key for dimensions to record Id map. </li>
* <li> None of the metrics are dictionary encoded. </li>
* <li> All columns should be single-valued (see https://github.com/apache/incubator-pinot/issues/3867)</li>
* <li> All columns should be single-valued (see https://github.com/apache/pinot/issues/3867)</li>
* </ul>
*
* TODO: Eliminate the requirement on dictionary encoding for dimension and metric columns.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ private void setupSwagger(HttpServer httpServer) {
BeanConfig beanConfig = new BeanConfig();
beanConfig.setTitle("Pinot Server API");
beanConfig.setDescription("APIs for accessing Pinot server information");
beanConfig.setContact("https://github.com/apache/incubator-pinot");
beanConfig.setContact("https://github.com/apache/pinot");
beanConfig.setVersion("1.0");
beanConfig.setSchemes(new String[]{CommonConstants.HTTP_PROTOCOL, CommonConstants.HTTPS_PROTOCOL});
beanConfig.setBasePath("/");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* @deprecated Use {@link DateTimeFieldSpec} instead.
* This should only be used in 1) tests 2) wherever required for backward compatible handling of schemas with
* TimeFieldSpec
* https://github.com/apache/incubator-pinot/issues/2756
* https://github.com/apache/pinot/issues/2756
*/
@JsonIgnoreProperties(ignoreUnknown = true)
@SuppressWarnings("unused")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ private void setupSwagger() {
BeanConfig beanConfig = new BeanConfig();
beanConfig.setTitle("Pinot Starter API");
beanConfig.setDescription("APIs for accessing Pinot Starter information");
beanConfig.setContact("https://github.com/apache/incubator-pinot");
beanConfig.setContact("https://github.com/apache/pinot");
beanConfig.setVersion("1.0");
beanConfig.setSchemes(new String[]{CommonConstants.HTTP_PROTOCOL, CommonConstants.HTTPS_PROTOCOL});
beanConfig.setBasePath(_baseUri.getPath());
Expand Down

0 comments on commit 1d1a7d3

Please sign in to comment.