You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@karaf.apache.org by "Kamil (JIRA)" <ji...@apache.org> on 2019/08/01 15:32:00 UTC

[jira] [Created] (KARAF-6374) Bundles installed from feature shown as Active despite exeption being thrown

Kamil created KARAF-6374:
----------------------------

             Summary: Bundles installed from feature shown as Active despite exeption being thrown
                 Key: KARAF-6374
                 URL: https://issues.apache.org/jira/browse/KARAF-6374
             Project: Karaf
          Issue Type: Bug
          Components: karaf
    Affects Versions: 4.2.6
            Reporter: Kamil


I've created a feature "dummy-test" which consits of 4 bundles:(dummy1, dummy3, dummy3, dummy4).

The only thing the bundle does is throw exception:
{code:java}
public class Dummy1 implements BundleActivator {

  @Override
  public final void start(final BundleContext bundleContext) {
      throw new RuntimeException("denied");
  }
}
{code}
when I install my bundles using "bundle:install" - then each of them throws exception and they're all in "Resolved" state.
 BUT, when I install them using "feature:install dummy-test" - all 4 throw exception (I see that in log:display) but some of them are listed as Active

Could you please fix that?



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)