You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've identified an issue with the management of the plugins lifecycle.
I have three plugins A, B and C. The plugins B and C depends on the plugin A.
Initially, the three plugins A, B and C are started. Then I do the following actions (actions order is important).
A is stopped -> B and C are also stopped (OK)
B is started -> A is also started and C is still stopped (OK)
C is started -> A, B and C are started (OK)
A is stopped -> B and C are still started (NOK : dependent plugins should never be started if one of its dependencies is stopped, unless it's an optional dependency)
I'm not sure if it's a SBP issue or a PF4J issue (?). This issue can be reprocuded easily, but an existing example already exists here.
The text was updated successfully, but these errors were encountered:
Hello,
I've identified an issue with the management of the plugins lifecycle.
I have three plugins A, B and C. The plugins B and C depends on the plugin A.
Initially, the three plugins A, B and C are started. Then I do the following actions (actions order is important).
I'm not sure if it's a SBP issue or a PF4J issue (?).
This issue can be reprocuded easily, but an existing example already exists here.
The text was updated successfully, but these errors were encountered: