[Streaming] Remove is_direct_call param (#10525)

This commit is contained in:
Lixin Wei 2020-09-03 17:13:18 +08:00 committed by GitHub
parent 553a93c5cc
commit d8ac4bc719
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -101,8 +101,8 @@ class Worker:
def test_queue():
ray.init()
writer = Worker._remote(is_direct_call=True)
reader = Worker._remote(is_direct_call=True)
writer = Worker._remote()
reader = Worker._remote()
channel_id_str = transfer.ChannelID.gen_random_id()
inits = [
writer.init_writer.remote(channel_id_str, pickle.dumps(reader)),