You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by ne...@apache.org on 2019/01/17 02:43:42 UTC

[incubator-pinot] branch fix_segment_status_checker updated: Change log in exception path of SegmentStatusChecker to error

This is an automated email from the ASF dual-hosted git repository.

nehapawar pushed a commit to branch fix_segment_status_checker
in repository https://gitbox.apache.org/repos/asf/incubator-pinot.git


The following commit(s) were added to refs/heads/fix_segment_status_checker by this push:
     new 8bab1d2  Change log in exception path of SegmentStatusChecker to error
8bab1d2 is described below

commit 8bab1d2a23c236b4617e93ba029a232e38f22938
Author: Neha Pawar <np...@linkedin.com>
AuthorDate: Wed Jan 16 18:43:31 2019 -0800

    Change log in exception path of SegmentStatusChecker to error
---
 .../java/org/apache/pinot/controller/helix/SegmentStatusChecker.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pinot-controller/src/main/java/org/apache/pinot/controller/helix/SegmentStatusChecker.java b/pinot-controller/src/main/java/org/apache/pinot/controller/helix/SegmentStatusChecker.java
index ea25432..64d8aac 100644
--- a/pinot-controller/src/main/java/org/apache/pinot/controller/helix/SegmentStatusChecker.java
+++ b/pinot-controller/src/main/java/org/apache/pinot/controller/helix/SegmentStatusChecker.java
@@ -234,7 +234,7 @@ public class SegmentStatusChecker extends ControllerPeriodicTask {
             nReplicasIdealMax);
       }
     } catch (Exception e) {
-      LOGGER.warn("Caught exception while updating segment status for table {}", tableNameWithType, e);
+      LOGGER.error("Caught exception while updating segment status for table {}", tableNameWithType, e);
 
       // Remove the metric for this table
       resetTableMetrics(tableNameWithType);


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@pinot.apache.org
For additional commands, e-mail: commits-help@pinot.apache.org