Skip to content

Commit c839b9f

Browse files
author
zhilingc
committed
Fix storage id of field names
1 parent 5507787 commit c839b9f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/src/main/java/feast/core/model/Field.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public Field(String featureSetId, String name, ValueType.Enum type) {
4444
FeatureSet featureSet = new FeatureSet();
4545
featureSet.setId(featureSetId);
4646
this.featureSet = featureSet;
47-
this.id = String.format("%s.%s", featureSetId, name);
47+
this.id = String.format("%s:%s", featureSetId, name);
4848
this.name = name;
4949
this.type = type.toString();
5050
}

0 commit comments

Comments
 (0)