File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1334,8 +1334,8 @@ def materialize_incremental(
13341334 provider = self ._get_provider ()
13351335 print (
13361336 f"{ Style .BRIGHT + Fore .GREEN } { feature_view .name } { Style .RESET_ALL } "
1337- f" from { Style .BRIGHT + Fore .GREEN } { start_date .replace (microsecond = 0 ). astimezone ( )} { Style .RESET_ALL } "
1338- f" to { Style .BRIGHT + Fore .GREEN } { end_date .replace (microsecond = 0 ). astimezone ( )} { Style .RESET_ALL } :"
1337+ f" from { Style .BRIGHT + Fore .GREEN } { utils . make_tzaware ( start_date .replace (microsecond = 0 ))} { Style .RESET_ALL } "
1338+ f" to { Style .BRIGHT + Fore .GREEN } { utils . make_tzaware ( end_date .replace (microsecond = 0 ))} { Style .RESET_ALL } :"
13391339 )
13401340
13411341 def tqdm_builder (length ):
@@ -2437,14 +2437,14 @@ def _print_materialization_log(
24372437 if start_date :
24382438 print (
24392439 f"Materializing { Style .BRIGHT + Fore .GREEN } { num_feature_views } { Style .RESET_ALL } feature views"
2440- f" from { Style .BRIGHT + Fore .GREEN } { start_date .replace (microsecond = 0 ). astimezone ( )} { Style .RESET_ALL } "
2441- f" to { Style .BRIGHT + Fore .GREEN } { end_date .replace (microsecond = 0 ). astimezone ( )} { Style .RESET_ALL } "
2440+ f" from { Style .BRIGHT + Fore .GREEN } { utils . make_tzaware ( start_date .replace (microsecond = 0 ))} { Style .RESET_ALL } "
2441+ f" to { Style .BRIGHT + Fore .GREEN } { utils . make_tzaware ( end_date .replace (microsecond = 0 ))} { Style .RESET_ALL } "
24422442 f" into the { Style .BRIGHT + Fore .GREEN } { online_store } { Style .RESET_ALL } online store.\n "
24432443 )
24442444 else :
24452445 print (
24462446 f"Materializing { Style .BRIGHT + Fore .GREEN } { num_feature_views } { Style .RESET_ALL } feature views"
2447- f" to { Style .BRIGHT + Fore .GREEN } { end_date .replace (microsecond = 0 ). astimezone ( )} { Style .RESET_ALL } "
2447+ f" to { Style .BRIGHT + Fore .GREEN } { utils . make_tzaware ( end_date .replace (microsecond = 0 ))} { Style .RESET_ALL } "
24482448 f" into the { Style .BRIGHT + Fore .GREEN } { online_store } { Style .RESET_ALL } online store.\n "
24492449 )
24502450
You can’t perform that action at this time.
0 commit comments