This is an automated email from the ASF dual-hosted git repository.
xiangfu 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 7d2affb Add missing format argument in retention manager (#6810)
7d2affb is described below
commit 7d2affb1ba64c36b050710e4e2fb1332e841bfeb
Author: Benedict Jin <[email protected]>
AuthorDate: Sun Apr 18 16:47:09 2021 +0800
Add missing format argument in retention manager (#6810)
---
.../apache/pinot/controller/helix/core/retention/RetentionManager.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/retention/RetentionManager.java
b/pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/retention/RetentionManager.java
index bfe82f8..44b957b 100644
---
a/pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/retention/RetentionManager.java
+++
b/pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/retention/RetentionManager.java
@@ -113,7 +113,7 @@ public class RetentionManager extends
ControllerPeriodicTask<Void> {
retentionStrategy = new
TimeRetentionStrategy(TimeUnit.valueOf(retentionTimeUnit.toUpperCase()),
Long.parseLong(retentionTimeValue));
} catch (Exception e) {
- LOGGER.warn("Invalid retention time: {} {} for table: {}, skip",
retentionTimeUnit, retentionTimeValue);
+ LOGGER.warn("Invalid retention time: {} {} for table: {}, skip",
retentionTimeUnit, retentionTimeValue, tableNameWithType);
return;
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]