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

ajfabbri pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/hadoop.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 9b71e5f0c0d HADOOP-19917. Add cause to exception in AbfsClient if 
SASTokenProvider failed (#8544)
9b71e5f0c0d is described below

commit 9b71e5f0c0db40e498b6eb4a11f7fe531cadcc9a
Author: K0K0V0K <[email protected]>
AuthorDate: Wed Jun 10 19:56:39 2026 +0200

    HADOOP-19917. Add cause to exception in AbfsClient if SASTokenProvider 
failed (#8544)
---
 .../main/java/org/apache/hadoop/fs/azurebfs/services/AbfsClient.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azurebfs/services/AbfsClient.java
 
b/hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azurebfs/services/AbfsClient.java
index a781e12c86a..a979b0aa1e8 100644
--- 
a/hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azurebfs/services/AbfsClient.java
+++ 
b/hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azurebfs/services/AbfsClient.java
@@ -1180,7 +1180,7 @@ protected String appendSASTokenToQuery(String path,
       } catch (Exception ex) {
         throw new SASTokenProviderException(String.format(
             "Failed to acquire a SAS token for %s on %s due to %s", operation, 
path,
-            ex.toString()));
+            ex.toString()), ex);
       }
     }
     return sasToken;


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to