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
Next Next commit
Update redis.py
fix(redis): preserve millisecond timestamp precision

Signed-off-by: Jatin Kumar <jatink.5251@gmail.com>
  • Loading branch information
jatin5251 committed Jan 1, 2026
commit a7dca65027b49dd54e206cdb933d09d884358806
1 change: 0 additions & 1 deletion sdk/python/feast/infra/online_stores/redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,6 @@ def online_write_batch(
# Build protobuf timestamp with nanos
ts = Timestamp()
ts.FromDatetime(aware_ts)

# New timestamp in nanoseconds
new_total_nanos = ts.seconds * 1_000_000_000 + ts.nanos

Expand Down
Loading