bziobrowski commented on PR #16664:
URL: https://github.com/apache/pinot/pull/16664#issuecomment-3213579135
Would it make sense to cover the api call with an integration test ? I don't
think it's exercised anywhere.
ControllerRequestURLBuilder's method is deprecated already:
```java
@Deprecated
public String forSegmentsMetadataFromServer(String tableName, @Nullable
String columns) {
String url = StringUtil.join("/", _baseUrl, "segments", tableName,
"metadata");
if (columns != null) {
url += "?columns=" + columns;
}
return url;
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]