Open
Description
Description
Ray init method does not support pathlib.Path objects for address and storage parameters. Only string objects are supported. It could be nice to support Path objects to avoid conversion such as:
ray.init(storage=Path('/home') / 'ray' / 'workflow_data') # Not working
ray.init(storage=str(Path('/home') / 'ray' / 'workflow_data')) # Working
Use case
I want to init ray using Pathlib objects.