Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
fix: Fix hdel params to *args
Signed-off-by: Jiwon Park <phil.park@sktelecom.com>
  • Loading branch information
j1wonpark committed Feb 11, 2024
commit 4732440da069687b53bafe29e4d05e1f3caee442
2 changes: 1 addition & 1 deletion sdk/python/feast/infra/online_stores/redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def delete_table(self, config: RepoConfig, table: FeatureView):
if len(_tables) == 1:
pipe.delete(_k)
else:
pipe.hdel(_k, redis_hash_keys)
pipe.hdel(_k, *redis_hash_keys)
deleted_count += 1
pipe.execute()

Expand Down