Skip to content
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

Remove task context from python worker #5987

Merged
merged 14 commits into from
Oct 25, 2019
Prev Previous commit
Next Next commit
Fix already exists check
  • Loading branch information
edoakes committed Oct 25, 2019
commit 7009cf8a2e3abb02147b48dd77425e9b6c2f8c83
2 changes: 1 addition & 1 deletion python/ray/_raylet.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ cdef class CoreWorker:
# which we ignore.
# TODO(edoakes): this is hacky, we should return the error instead
# and deal with it here.
return not data
return data.get() == NULL

def put_serialized_object(self, serialized_object, ObjectID object_id=None,
int memcopy_threads=6):
Expand Down