-
Notifications
You must be signed in to change notification settings - Fork 6.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[XRay] Pass in node IP address to Raylet #1808
Conversation
Test FAILed. |
Test FAILed. |
Test PASSed. |
Test PASSed. |
src/ray/raylet/main.cc
Outdated
|
||
const std::string raylet_socket_name = std::string(argv[1]); | ||
const std::string store_socket_name = std::string(argv[2]); | ||
const std::string redis_address = std::string(argv[3]); | ||
int redis_port = std::stoi(argv[4]); | ||
const std::string node_ip_address = std::string(argv[5]); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we make this the first argument? Otherwise LGTM.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes! Good idea :)
Test PASSed. |
Test PASSed. |
Test PASSed. |
#1807