We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
import copy import ray from ray.rllib.utils import merge_dicts ray.init() @ray.remote class Foo(object): def __init__(self): pass foo = {"dummy": Foo.remote()} foo_1 = merge_dicts(foo, {}) foo_2 = merge_dicts(foo_1, {}) # TypeError: a bytes-like object is required, not 'NoneType' """ or """ foo = Foo.remote() foo_1 = copy.deepcopy(foo) foo_2 = copy.deepcopy(foo_1) # TypeError: a bytes-like object is required, not 'NoneType'
Is this expected?
The text was updated successfully, but these errors were encountered:
I don't think actor handles are copyable via copy. You should be able to pickle and unpickle them to achieve the same thing though.
Sorry, something went wrong.
No branches or pull requests
System information
Is this expected?
The text was updated successfully, but these errors were encountered: