Skip to content

Commit

Permalink
fix(aim): fix typo in checksameSourceUrn (#485)
Browse files Browse the repository at this point in the history
Co-authored-by: Justin Donn <[email protected]>
  • Loading branch information
jsdonn and Justin Donn authored Dec 10, 2024
1 parent ff330d3 commit 8e79e03
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static void checkSameSourceUrn(@Nonnull final List<? extends RecordTempla
}

// TODO: remove this temporary allow list after AIM no longer relies on ProducesLocalRelationshipBuilderFromFeatureDependencies
if (assetUrn != null && assetUrn.getEntityType().equals("mlFeatureVersion") && relationships.get(0).getClass().getSimpleName().equals("produces")) {
if (assetUrn != null && assetUrn.getEntityType().equals("mlFeatureVersion") && relationships.get(0).getClass().getSimpleName().equals("Produces")) {
return;
}

Expand Down

0 comments on commit 8e79e03

Please sign in to comment.