Skip to content

Commit

Permalink
fix FeatureSetJobStatus removal (#848)
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleksii Moskalenko authored Jul 1, 2020
1 parent 8e5f32d commit 4b3ccd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/feast/core/model/FeatureSet.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public class FeatureSet extends AbstractTimestampEntity {
@Column(name = "version", columnDefinition = "integer default 0")
private int version;

@OneToMany(mappedBy = "featureSet", cascade = CascadeType.ALL)
@OneToMany(mappedBy = "featureSet")
private Set<FeatureSetJobStatus> jobStatuses = new HashSet<>();

public FeatureSet() {
Expand Down

0 comments on commit 4b3ccd3

Please sign in to comment.