This is an automated email from the ASF dual-hosted git repository. xiangfu pushed a commit to branch release-0.7.1-rc in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git
commit 7d6b2474e6b5dc07181a30d43f1a978a8be5ee5f Author: Jiapeng Tao <[email protected]> AuthorDate: Wed Mar 24 10:49:08 2021 -0700 Fix log message in ControllerPeriodicTask (#6709) --- .../controller/helix/core/periodictask/ControllerPeriodicTask.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/periodictask/ControllerPeriodicTask.java b/pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/periodictask/ControllerPeriodicTask.java index 9139f1d..5aff79c 100644 --- a/pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/periodictask/ControllerPeriodicTask.java +++ b/pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/periodictask/ControllerPeriodicTask.java @@ -94,7 +94,7 @@ public abstract class ControllerPeriodicTask<C> extends BasePeriodicTask { try { processTable(tableNameWithType, context); } catch (Exception e) { - LOGGER.error("Caught exception while processing table: {} in task: {}", tableNamesWithType, _taskName, e); + LOGGER.error("Caught exception while processing table: {} in task: {}", tableNameWithType, _taskName, e); } numTablesProcessed++; } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
