[xlang] Cross language serialize ActorHandle (#7134)

This commit is contained in:
fyrestone
2020-02-17 20:44:56 +08:00
committed by GitHub
parent b079787c59
commit a6b8bd47b0
27 changed files with 498 additions and 197 deletions
+2 -1
View File
@@ -269,7 +269,8 @@ class StreamingQueueTestBase : public ::testing::TestWithParam<uint64_t> {
// Create an actor.
ActorID actor_id;
RAY_CHECK_OK(worker.CreateActor(func, args, actor_options, &actor_id));
RAY_CHECK_OK(
worker.CreateActor(func, args, actor_options, /*extension_data*/ "", &actor_id));
return actor_id;
}