mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
[Streaming] Remove is_direct_call param (#10525)
This commit is contained in:
parent
553a93c5cc
commit
d8ac4bc719
1 changed files with 2 additions and 2 deletions
|
@ -101,8 +101,8 @@ class Worker:
|
||||||
|
|
||||||
def test_queue():
|
def test_queue():
|
||||||
ray.init()
|
ray.init()
|
||||||
writer = Worker._remote(is_direct_call=True)
|
writer = Worker._remote()
|
||||||
reader = Worker._remote(is_direct_call=True)
|
reader = Worker._remote()
|
||||||
channel_id_str = transfer.ChannelID.gen_random_id()
|
channel_id_str = transfer.ChannelID.gen_random_id()
|
||||||
inits = [
|
inits = [
|
||||||
writer.init_writer.remote(channel_id_str, pickle.dumps(reader)),
|
writer.init_writer.remote(channel_id_str, pickle.dumps(reader)),
|
||||||
|
|
Loading…
Add table
Reference in a new issue