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

mblow pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/asterixdb.git

commit 20a24a377b9270dc59336009b6c5b48decfc19e5
Author: Hussain Towaileb <[email protected]>
AuthorDate: Fri Jun 24 11:22:58 2022 +0300

    [ASTERIXDB-3042][FAIL]: Add constructor accepting stacktrace in exceptions
    
    Change-Id: If9dec79abd147eb24485ebb2cc5636b2c326a72d
    Reviewed-on: https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/16683
    Reviewed-by: Ian Maxon <[email protected]>
    Tested-by: Jenkins <[email protected]>
---
 .../java/org/apache/hyracks/api/exceptions/HyracksDataException.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/hyracks-fullstack/hyracks/hyracks-api/src/main/java/org/apache/hyracks/api/exceptions/HyracksDataException.java
 
b/hyracks-fullstack/hyracks/hyracks-api/src/main/java/org/apache/hyracks/api/exceptions/HyracksDataException.java
index 6deff8d902..fdda793765 100644
--- 
a/hyracks-fullstack/hyracks/hyracks-api/src/main/java/org/apache/hyracks/api/exceptions/HyracksDataException.java
+++ 
b/hyracks-fullstack/hyracks/hyracks-api/src/main/java/org/apache/hyracks/api/exceptions/HyracksDataException.java
@@ -104,7 +104,7 @@ public class HyracksDataException extends HyracksException {
 
     private HyracksDataException(HyracksDataException hde, String nodeId) {
         super(hde.getError().orElse(null), hde.getComponent(), 
hde.getErrorCode(), hde.getMessage(), hde.getCause(),
-                hde.getSourceLocation(), nodeId, hde.getStackTrace(), 
hde.getParams());
+                hde.getSourceLocation(), nodeId, hde.getParams());
     }
 
     protected HyracksDataException(IError error, Throwable cause, 
SourceLocation sourceLoc, Serializable... params) {

Reply via email to