Skip to content

Commit 1102f04

Browse files
committed
a couple more bugfixes
Signed-off-by: Oleg Avdeev <oleg.v.avdeev@gmail.com>
1 parent 53584d6 commit 1102f04

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

sdk/python/feast/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ def job():
362362
pass
363363

364364

365-
@job.command(name="start-offline-to-online")
365+
@job.command(name="sync-offline-to-online")
366366
@click.option(
367367
"--feature-table",
368368
"-t",

sdk/python/feast/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -927,7 +927,7 @@ def get_historical_features(
927927
entity_source,
928928
feature_tables,
929929
output_format,
930-
os.path.join(output_location, str(uuid.uuid4)),
930+
os.path.join(output_location, str(uuid.uuid4())),
931931
)
932932

933933
def get_historical_features_df(

sdk/python/feast/pyspark/launchers/aws/emr_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ def _wait_for_step_state(
300300
if state in desired_states:
301301
return state
302302
else:
303-
time.sleep(0.5)
303+
time.sleep(1)
304304
else:
305305
raise TimeoutError(
306306
f'Timeout waiting for job state to become {"|".join(desired_states)}'

0 commit comments

Comments
 (0)