mirror of
https://github.com/wassname/ray.git
synced 2026-07-05 16:44:54 +08:00
Fix pyarrow version check (#1360)
This commit is contained in:
committed by
Robert Nishihara
parent
4a2d62e7ef
commit
3a301c3d56
@@ -350,14 +350,14 @@ def check_version_info(redis_client):
|
||||
" Ray location: " + true_version_info[1] + "\n"
|
||||
" Python: " + true_version_info[2] + "\n"
|
||||
" Cloudpickle: " + true_version_info[3] + "\n"
|
||||
" Pyarrow: " + true_version_info[4] + "\n"
|
||||
" Pyarrow: " + str(true_version_info[4]) + "\n"
|
||||
"This process on node " + node_ip_address +
|
||||
" was started with:" + "\n"
|
||||
" Ray: " + version_info[0] + "\n"
|
||||
" Ray location: " + version_info[1] + "\n"
|
||||
" Python: " + version_info[2] + "\n"
|
||||
" Cloudpickle: " + version_info[3] + "\n"
|
||||
" Pyarrow: " + version_info[4])
|
||||
" Pyarrow: " + str(version_info[4]))
|
||||
|
||||
|
||||
def start_redis(node_ip_address,
|
||||
|
||||
Reference in New Issue
Block a user