adamjones0101
adamjones0101
We are also experiencing this issue. We use Liquibase to perform upgrades in a Kubernetes environment on Linux. Our service is multithreaded and we usually upgrade only 10 to 50...
The fix is actually quite trivial. In SingletonScopeManager just change "private Scope currentScope" to "private ThreadLocal currentScope = new ThreadLocal()" and make the appropriate changes to the getter and setter...
Thank you. Yes, we can try v4.11, it may take a couple of weeks but I will respond with the results either way.
Unfortunately I hit a snag in testing. I get the error "Unknown change type loadUpdateData". I dug through the code and found that in the ChangeSet.toChange method, just before this...
I could. I had to make a little more change to CreateViewGenerator.java to get it to work right. However, I have not been able to fully test our changesets because...
I do not have a Git environment from which I can create a PR, I only download the zip, build it and use it within our product. However, I am...
It's not a high priority because we are still blocked by Issue 5359. In fact we are considering using Version 4.15.0 with the hope that the issue had not yet...
Is this fix going to get merge?