Skip to content

Commit fa880e7

Browse files
jfw-ppidevin-ai-integration[bot]
authored andcommitted
fix: Add missing conn.commit() in SnowflakeOnlineStore.online_write_batch (feast-dev#5432)
1 parent bce1459 commit fa880e7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sdk/python/feast/infra/online_stores/snowflake.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def online_write_batch(
149149
"_feast_row" = 1;
150150
"""
151151
execute_snowflake_statement(conn, query)
152-
152+
conn.commit()
153153
if progress:
154154
progress(len(data))
155155

0 commit comments

Comments
 (0)