mirror of
https://github.com/wassname/ray.git
synced 2026-07-01 02:00:46 +08:00
Use actor ID for the dummy object (#3437)
This commit is contained in:
committed by
Eric Liang
parent
07d8cbf414
commit
447604a9fe
@@ -172,7 +172,7 @@ public class RayletClientImpl implements RayletClient {
|
||||
final int parentTaskIdOffset = fbb.createString(task.parentTaskId.toByteBuffer());
|
||||
final int parentCounter = task.parentCounter;
|
||||
final int actorCreateIdOffset = fbb.createString(task.actorCreationId.toByteBuffer());
|
||||
final int actorCreateDummyIdOffset = fbb.createString(UniqueId.NIL.toByteBuffer());
|
||||
final int actorCreateDummyIdOffset = fbb.createString(task.actorId.toByteBuffer());
|
||||
final int actorIdOffset = fbb.createString(task.actorId.toByteBuffer());
|
||||
final int actorHandleIdOffset = fbb.createString(task.actorHandleId.toByteBuffer());
|
||||
final int actorCounter = task.actorCounter;
|
||||
|
||||
Reference in New Issue
Block a user