Skip to content

Commit

Permalink
Fix pyarrow version check (ray-project#1360)
Browse files Browse the repository at this point in the history
  • Loading branch information
pcmoritz authored and robertnishihara committed Dec 21, 2017
1 parent 4a2d62e commit 3a301c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/ray/services.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 3a301c3

Please sign in to comment.