Skip to content

Commit

Permalink
a couple more bugfixes
Browse files Browse the repository at this point in the history
Signed-off-by: Oleg Avdeev <oleg.v.avdeev@gmail.com>
  • Loading branch information
oavdeev committed Oct 23, 2020
1 parent 53584d6 commit 1102f04
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sdk/python/feast/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ def job():
pass


@job.command(name="start-offline-to-online")
@job.command(name="sync-offline-to-online")
@click.option(
"--feature-table",
"-t",
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/feast/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -927,7 +927,7 @@ def get_historical_features(
entity_source,
feature_tables,
output_format,
os.path.join(output_location, str(uuid.uuid4)),
os.path.join(output_location, str(uuid.uuid4())),
)

def get_historical_features_df(
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/feast/pyspark/launchers/aws/emr_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ def _wait_for_step_state(
if state in desired_states:
return state
else:
time.sleep(0.5)
time.sleep(1)
else:
raise TimeoutError(
f'Timeout waiting for job state to become {"|".join(desired_states)}'
Expand Down

0 comments on commit 1102f04

Please sign in to comment.