bug fix in migrate entities: parameter name was wrong

pull/150/head
miconis 3 years ago
parent 995c1eddaf
commit 5f780a6ba1

@ -707,7 +707,7 @@ public class MigrateDbEntitiesApplication extends AbstractMigrationApplication i
r.setSubRelType(ModelConstants.RELATIONSHIP);
r
.setRelClass(
rs.getString("reltype").equalsIgnoreCase("parent") ? ModelConstants.IS_PARENT_OF
rs.getString("type").equalsIgnoreCase("parent") ? ModelConstants.IS_PARENT_OF
: ModelConstants.IS_CHILD_OF);
r.setSource(orgId1);
r.setTarget(orgId2);

@ -258,7 +258,7 @@
<switch>
<case to="ImportDB">${wf:conf('reuseDB') eq false}</case>
<case to="reuse_odf">${wf:conf('reuseDB') eq true}</case>
<default to="ImportDB_claims"/>
<default to="ImportDB"/>
</switch>
</decision>

Loading…
Cancel
Save