-
Notifications
You must be signed in to change notification settings - Fork 7k
Closed
Closed
Copy link
Labels
P3Issue moderate in impact or severityIssue moderate in impact or severitybugSomething that is supposed to be working; but isn'tSomething that is supposed to be working; but isn'tcoreIssues that should be addressed in Ray CoreIssues that should be addressed in Ray Corepending-cleanupThis issue is pending cleanup. It will be removed in 2 weeks after being assigned.This issue is pending cleanup. It will be removed in 2 weeks after being assigned.
Description
What happened + What you expected to happen
Consider this scenario:
ray.init()
my_objref = ray.put('MY TEXT')
ray.shutdown()
ray.init()
@ray.remote
def my_fn(obj):
print(obj)
my_fn.remote(my_objref)
In this scenario, Ray will generate an error message, and terminate the Python interpreter WITHOUT FAILING. I would expect the Python interpreter to fail (maybr even better: throw a Python error and not terminate)
Versions / Dependencies
Ray 2.0
Reproduction script
ray.init()
my_objref = ray.put('MY TEXT')
ray.shutdown()
ray.init()
@ray.remote
def my_fn(obj):
print(obj)
my_fn.remote(my_objref)
Issue Severity
Medium: It is a significant difficulty but I can work around it.
Metadata
Metadata
Assignees
Labels
P3Issue moderate in impact or severityIssue moderate in impact or severitybugSomething that is supposed to be working; but isn'tSomething that is supposed to be working; but isn'tcoreIssues that should be addressed in Ray CoreIssues that should be addressed in Ray Corepending-cleanupThis issue is pending cleanup. It will be removed in 2 weeks after being assigned.This issue is pending cleanup. It will be removed in 2 weeks after being assigned.