[
https://issues.apache.org/jira/browse/KARAF-6374?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16934481#comment-16934481
]
Jean-Baptiste Onofré commented on KARAF-6374:
---------------------------------------------
[~eximius] no, the feature resolver "computes" the order depending the
requirements/capabilities of the features. If you want to be "sure" that Y is
actually fully installed before moving forward, you have to flag prerequisite:
{code}
<feature name="X" version="0.0.1">
<feature prerequisite="true">Y</feature>
...
</feature>
{code}
> 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
> Assignee: Jean-Baptiste Onofré
> Priority: Major
> Fix For: 4.3.0, 4.2.7
>
>
> 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
(v8.3.4#803005)