Merge pull request #3342 from hmlnarik/KEYCLOAK-3588

KEYCLOAK-3588 Update comment with related KC issue
This commit is contained in:
Stian Thorgersen 2016-10-18 08:27:40 +02:00 committed by GitHub
commit 37affb1e9c

View file

@ -211,6 +211,7 @@ public class LiquibaseJpaUpdaterProvider implements JpaUpdaterProvider {
@SuppressWarnings("unchecked")
private List<ChangeSet> getChangeSets(Liquibase liquibase) {
// TODO tracked as: https://issues.jboss.org/browse/KEYCLOAK-3730
// TODO: When https://liquibase.jira.com/browse/CORE-2919 is resolved, replace the following two lines with:
// List<ChangeSet> changeSets = liquibase.listUnrunChangeSets((Contexts) null, new LabelExpression(), false);
Method listUnrunChangeSets = Reflections.findDeclaredMethod(Liquibase.class, "listUnrunChangeSets", Contexts.class, LabelExpression.class, boolean.class);