You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pinot.apache.org by xi...@apache.org on 2020/09/01 19:36:43 UTC

[incubator-pinot] branch master updated: Incorporating embedded exception while trying to fetch stream offset (#5956)

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 d444285  Incorporating embedded exception while trying to fetch stream offset (#5956)
d444285 is described below

commit d444285da9f5be8f7c6e73f67e371ea2b8a282ad
Author: icefury71 <ch...@gmail.com>
AuthorDate: Tue Sep 1 12:36:27 2020 -0700

    Incorporating embedded exception while trying to fetch stream offset (#5956)
---
 .../controller/helix/core/realtime/PinotLLCRealtimeSegmentManager.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/realtime/PinotLLCRealtimeSegmentManager.java b/pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/realtime/PinotLLCRealtimeSegmentManager.java
index 06cc58d..d672155 100644
--- a/pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/realtime/PinotLLCRealtimeSegmentManager.java
+++ b/pinot-controller/src/main/java/org/apache/pinot/controller/helix/core/realtime/PinotLLCRealtimeSegmentManager.java
@@ -610,7 +610,7 @@ public class PinotLLCRealtimeSegmentManager {
     } catch (Exception e) {
       throw new IllegalStateException(String
           .format("Failed to fetch the offset for topic: %s, partition: %s with criteria: %s",
-              streamConfig.getTopicName(), partitionId, offsetCriteria));
+              streamConfig.getTopicName(), partitionId, offsetCriteria), e);
     }
   }
 


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