How to Fix the Liquibase Waiting for Changelog Lock Issue
This fix requires that you have access to your database and that you are either working in your local or development environment. The error:...
This fix requires that you have access to your database and that you are either working in your local or development environment.
The error: liquibase: Waiting for changelog lock.
If you are using PostgreSQL, open your PGAdmin, and execute the command below.
UPDATE DATABASECHANGELOGLOCK SET LOCKED=false, LOCKGRANTED=null, LOCKEDBY=null where ID=1;
Post a Comment