Skip to content

Commit

Permalink
Merge pull request #7176 from deutschebank/db-contrib/entity-relation…
Browse files Browse the repository at this point in the history
…ship-variable-ref-fix-7175

entity relationship variable ref fix
  • Loading branch information
davidwatkins73 authored Oct 21, 2024
2 parents 73a8046 + 5899573 commit ba5b149
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ public BulkUploadRelationshipValidationResult bulkPreview(String input, Long rel
.stream()
.map(r -> tuple(
r,
finalSourceEntityRefMap.get(r.sourceExternalId()),
finalTargetEntityRefMap.get(r.targetExternalId())
sourceEntityRefMap.get(r.sourceExternalId()),
targetEntityRefMap.get(r.targetExternalId())
))
.map(t -> {
Set<ValidationError> validationErrors = new HashSet<>();
Expand Down

0 comments on commit ba5b149

Please sign in to comment.