You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by jb...@apache.org on 2016/10/14 15:25:40 UTC

karaf-cellar git commit: [KARAF-4759] Fix getFeatures(group) operation on the CellarFeaturesMBean

Repository: karaf-cellar
Updated Branches:
  refs/heads/master 1a3a3774e -> fe8db32c2


[KARAF-4759] Fix getFeatures(group) operation on the CellarFeaturesMBean


Project: http://git-wip-us.apache.org/repos/asf/karaf-cellar/repo
Commit: http://git-wip-us.apache.org/repos/asf/karaf-cellar/commit/fe8db32c
Tree: http://git-wip-us.apache.org/repos/asf/karaf-cellar/tree/fe8db32c
Diff: http://git-wip-us.apache.org/repos/asf/karaf-cellar/diff/fe8db32c

Branch: refs/heads/master
Commit: fe8db32c22ffc5e431aa385601ea16310b94772a
Parents: 1a3a377
Author: Jean-Baptiste Onofr� <jb...@apache.org>
Authored: Fri Oct 14 17:24:54 2016 +0200
Committer: Jean-Baptiste Onofr� <jb...@apache.org>
Committed: Fri Oct 14 17:24:54 2016 +0200

----------------------------------------------------------------------
 .../features/management/internal/CellarFeaturesMBeanImpl.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/karaf-cellar/blob/fe8db32c/features/src/main/java/org/apache/karaf/cellar/features/management/internal/CellarFeaturesMBeanImpl.java
----------------------------------------------------------------------
diff --git a/features/src/main/java/org/apache/karaf/cellar/features/management/internal/CellarFeaturesMBeanImpl.java b/features/src/main/java/org/apache/karaf/cellar/features/management/internal/CellarFeaturesMBeanImpl.java
index f694fb8..6ce36e5 100644
--- a/features/src/main/java/org/apache/karaf/cellar/features/management/internal/CellarFeaturesMBeanImpl.java
+++ b/features/src/main/java/org/apache/karaf/cellar/features/management/internal/CellarFeaturesMBeanImpl.java
@@ -290,7 +290,7 @@ public class CellarFeaturesMBeanImpl extends StandardMBean implements CellarFeat
                 new String[]{"Name of the feature", "Version of the feature", "Whether the feature is installed or not",
                         "Location of the feature (on the cluster or the local node)",
                         "Feature block policy"},
-                new OpenType[]{SimpleType.STRING, SimpleType.STRING, SimpleType.BOOLEAN});
+                new OpenType[]{SimpleType.STRING, SimpleType.STRING, SimpleType.BOOLEAN, SimpleType.STRING, SimpleType.STRING});
 
         TabularType tabularType = new TabularType("Features", "Table of all Karaf Cellar features",
                 featuresType, new String[]{"name", "version"});