Skip to content

Commit

Permalink
Update job naming
Browse files Browse the repository at this point in the history
Co-authored-by: Oleg Avdeev <oleg.v.avdeev@gmail.com>
Signed-off-by: Khor Shu Heng <khor.heng@gojek.com>
  • Loading branch information
khorshuheng and oavdeev committed Oct 15, 2020
1 parent 5274b5d commit e23ed4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/python/feast/pyspark/abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def __init__(

def get_name(self) -> str:
all_feature_tables_names = [ft["name"] for ft in self._feature_tables]
return f"HistoryRetrieval-{all_feature_tables_names}"
return f"HistoryRetrieval-{'-'.join(all_feature_tables_names)}"

def get_main_file_path(self) -> str:
return os.path.join(
Expand Down

0 comments on commit e23ed4f

Please sign in to comment.