Skip to content

Commit 67c41b4

Browse files
committed
fix tests
Signed-off-by: Achal Shah <achals@gmail.com>
1 parent dc06cc2 commit 67c41b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/python/feast/data_source.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -704,7 +704,7 @@ def from_proto(data_source: DataSourceProto):
704704
for key, val in schema_pb.items():
705705
schema[key] = ValueType(val)
706706

707-
assert data_source.push_options.HasField("batch_source")
707+
assert data_source.HasField("batch_source")
708708
batch_source = DataSource.from_proto(data_source.batch_source)
709709

710710
return PushSource(

0 commit comments

Comments
 (0)