Commit 1988ab5 re: #190 introduced a bug wherein any changes to the default plugin ordering are immediately reverted in cic.run() when handling adaptive plugins.
On the current master branch this is due to a call to c.order() (without arguments) in cic.handleAdaptives(). Calling c.order() without arguments restores the default plugin order, reverting any changes made by the user.
Commit 1988ab5 re: #190 introduced a bug wherein any changes to the default plugin ordering are immediately reverted in
cic.run()
when handling adaptive plugins.On the current master branch this is due to a call to
c.order()
(without arguments) incic.handleAdaptives()
. Callingc.order()
without arguments restores the default plugin order, reverting any changes made by the user.