mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
fix: Add error handling for failed bundle
This commit is contained in:
parent
212c73726f
commit
53145fa7ec
1 changed files with 5 additions and 1 deletions
|
|
@ -403,7 +403,11 @@ public class HeliumBundleFactory {
|
|||
copyFrameworkModuleToInstallPath();
|
||||
|
||||
for (HeliumPackage pkg : pkgs) {
|
||||
buildPackage(pkg, rebuild);
|
||||
try {
|
||||
buildPackage(pkg, rebuild);
|
||||
} catch (IOException e) {
|
||||
logger.error("Failed to build helium package: " + pkg.getArtifact(), e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue