mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Ignore removed package
This commit is contained in:
parent
e18d9a4d81
commit
f373f1d1cd
1 changed files with 3 additions and 0 deletions
|
|
@ -303,6 +303,9 @@ public class Helium {
|
|||
// add enabled packages in visOrder
|
||||
for (String name : visOrder) {
|
||||
List<HeliumPackageSearchResult> versions = allPackages.get(name);
|
||||
if (versions == null) {
|
||||
continue;
|
||||
}
|
||||
for (HeliumPackageSearchResult pkgInfo : versions) {
|
||||
if (pkgInfo.getPkg().getType() == HeliumPackage.Type.VISUALIZATION && pkgInfo.isEnabled()) {
|
||||
orderedVisualizationPackages.add(pkgInfo.getPkg());
|
||||
|
|
|
|||
Loading…
Reference in a new issue