-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Open
Labels
community-contributionContributed by the communityContributed by the communitycoreIssues that should be addressed in Ray CoreIssues that should be addressed in Ray Corewindows
Description
Lines 71 to 76 in cc5a8ca
#ifdef _WIN32 | |
// TODO(mehrdadn): implement graceful process termination mechanism | |
#else | |
// Attempt to gracefully shutdown the worker before force killing it. | |
kill(worker->GetProcess().GetId(), SIGTERM); | |
#endif |
See above, we currently send SIGTERM
on non-Windows operating systems when killing a worker, but do nothing on Windows.
It will be great if we can have a SIGTERM
equivalent on Windows as well.
Metadata
Metadata
Assignees
Labels
community-contributionContributed by the communityContributed by the communitycoreIssues that should be addressed in Ray CoreIssues that should be addressed in Ray Corewindows