>>>>> Steinar Bang <[email protected]>: > Hm... I removed the liquibase-slf4j bundle from the feature.xml and then > I got a different karaf.log > https://gist.github.com/steinarb/c04967029621509053f0b6c5903f5fcf
The important stack trace here, is: https://gist.github.com/steinarb/fe342779dfe50b82345e9ac04718f17d#file-karaf-log-L433 This is because of the way I'm using the Liquibase Java API and because the Liquibase.update() operation creates a new scope from the root scope, when there already is a scope, and that doesn't work. Possibly releated to this open liquibase issue...? (I googled the error message) https://github.com/liquibase/liquibase/issues/2248 My approach worked for liquibase 3.x, but I have to rethink what to do for liquibase 4.x (I don't feel like waiting until issue 2248 is fixed). Maybe look at Steven's pseudi code?
