Skip to content
Merged
Prev Previous commit
Next Next commit
updated
Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
  • Loading branch information
franciscojavierarceo committed Sep 22, 2025
commit bc7ce08be7948834d39e9961efa6a0a5a6ad678c
6 changes: 4 additions & 2 deletions sdk/python/feast/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.
import json
import logging
from datetime import datetime, timedelta
from datetime import datetime
from importlib.metadata import version as importlib_version
from pathlib import Path
from typing import List, Optional
Expand Down Expand Up @@ -343,7 +343,9 @@ def materialize_command(
)
now = datetime.now()
# Query all available data and use current datetime as event timestamp
start_date = datetime(1970, 1, 1) # Beginning of time to capture all historical data
start_date = datetime(
1970, 1, 1
) # Beginning of time to capture all historical data
end_date = now
Comment thread
franciscojavierarceo marked this conversation as resolved.
else:
if not start_ts or not end_ts:
Expand Down
Loading