This is an automated email from the ASF dual-hosted git repository.
jackie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/master by this push:
new d62438c36c [Minor] Make warning log more explicit for segment upload
(#8715)
d62438c36c is described below
commit d62438c36c9f8b539724b5939adc668c036d1400
Author: Xiaotian (Jackie) Jiang <[email protected]>
AuthorDate: Mon May 16 17:52:53 2022 -0700
[Minor] Make warning log more explicit for segment upload (#8715)
---
.../api/resources/PinotSegmentUploadDownloadRestletResource.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/pinot-controller/src/main/java/org/apache/pinot/controller/api/resources/PinotSegmentUploadDownloadRestletResource.java
b/pinot-controller/src/main/java/org/apache/pinot/controller/api/resources/PinotSegmentUploadDownloadRestletResource.java
index 6739bb9cc5..01aa8c832b 100644
---
a/pinot-controller/src/main/java/org/apache/pinot/controller/api/resources/PinotSegmentUploadDownloadRestletResource.java
+++
b/pinot-controller/src/main/java/org/apache/pinot/controller/api/resources/PinotSegmentUploadDownloadRestletResource.java
@@ -289,7 +289,8 @@ public class PinotSegmentUploadDownloadRestletResource {
} else {
// TODO: remove this when we completely deprecate the table name from
segment metadata
rawTableName = segmentMetadata.getTableName();
- LOGGER.warn("Table name is not provided when uploading segment: {} for
table: {}", segmentName, rawTableName);
+ LOGGER.warn("Table name is not provided as request query parameter
when uploading segment: {} for table: {}",
+ segmentName, rawTableName);
}
String tableNameWithType;
if (tableType == TableType.OFFLINE) {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]