Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion core/src/main/java/feast/core/model/Source.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ public Source(SourceType type, KafkaSourceConfig config, boolean isDefault) {
*/
public static Source fromProto(SourceProto.Source sourceProto) {
if (sourceProto.equals(SourceProto.Source.getDefaultInstance())) {
return new Source();
Source source = new Source();
source.isDefault = true;
return source;
}

switch (sourceProto.getType()) {
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/feast/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def _apply_feature_set(self, feature_set: FeatureSet):
feature_set._update_from_feature_set(applied_fs, is_dirty=False)
return
if apply_fs_response.status == ApplyFeatureSetResponse.Status.NO_CHANGE:
print(f'No change detected in feature set {feature_set.name}:{feature_set.version}')
print(f'No change detected in feature set {feature_set.name}')
return
except grpc.RpcError as e:
print(format_grpc_exception("ApplyFeatureSet", e.code(), e.details()))
Expand Down