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 <[email protected]>
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: [email protected]
For additional commands, e-mail: [email protected]