Skip to content

Commit

Permalink
Flow Classification re-eval on rule change
Browse files Browse the repository at this point in the history
#CTCTOWALTZ-3177
  • Loading branch information
db-waltz committed May 9, 2024
1 parent c4cd4e0 commit 8735097
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ public static CommonTableFields<?> determineCommonTableFields(EntityKind kind, S
.table(sq)
.idField(sq.ID)
.parentIdField(null)
.nameField(sq.LABEL)
.nameField(sq.QUESTION_TEXT)
.descriptionField(sq.HELP_TEXT)
.externalIdField(sq.EXTERNAL_ID)
.build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,7 @@ public static void main(String[] args) {
FlowClassificationRuleDao fcrDao = ctx.getBean(FlowClassificationRuleDao.class);
LogicalFlowDecoratorDao lfdDao = ctx.getBean(LogicalFlowDecoratorDao.class);

EntityReference collibra = EntityReference.mkRef(EntityKind.APPLICATION, 124334001L);
EntityReference fdw = EntityReference.mkRef(EntityKind.APPLICATION, 16831L);
EntityReference rftEds = EntityReference.mkRef(EntityKind.ORG_UNIT, 10526L);
EntityReference group = EntityReference.mkRef(EntityKind.ORG_UNIT, 95L);
EntityReference flow = EntityReference.mkRef(EntityKind.LOGICAL_DATA_FLOW, 75503L);
EntityReference tokyo = EntityReference.mkRef(EntityKind.END_USER_APPLICATION, 11104L);
EntityReference group = EntityReference.mkRef(EntityKind.ORG_UNIT, 99L);

Select<Record1<Long>> flowSelector = mkSelector(group);
EntityHierarchy dtHierarchy = time("loading dt hier", () -> ehSvc.fetchHierarchyForKind(EntityKind.DATA_TYPE));
Expand Down

0 comments on commit 8735097

Please sign in to comment.