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

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


The following commit(s) were added to refs/heads/master by this push:
     new daff50a6410 Stop swallowing an exception in PullDependencies when a 
dependency resolution exception occurrs (#18367)
daff50a6410 is described below

commit daff50a64109f489584eb84535ba0fd39e814d7d
Author: Lucas Capistrant <[email protected]>
AuthorDate: Mon Aug 4 20:29:18 2025 -0500

    Stop swallowing an exception in PullDependencies when a dependency 
resolution exception occurrs (#18367)
---
 services/src/main/java/org/apache/druid/cli/PullDependencies.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/services/src/main/java/org/apache/druid/cli/PullDependencies.java 
b/services/src/main/java/org/apache/druid/cli/PullDependencies.java
index e6b18ab7da7..6f7e9e459a2 100644
--- a/services/src/main/java/org/apache/druid/cli/PullDependencies.java
+++ b/services/src/main/java/org/apache/druid/cli/PullDependencies.java
@@ -412,6 +412,7 @@ public class PullDependencies implements Runnable
       } else {
         log.error(e, "Unable to resolve artifacts for [%s].", 
dependencyRequest);
       }
+      throw new RuntimeException(e);
     }
     catch (IOException e) {
       log.error(e, "I/O error while processing artifact [%s].", 
versionedArtifact);


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

Reply via email to