Use actor ID for the dummy object (#3437)

This commit is contained in:
Stephanie Wang 2018-11-29 22:31:04 -08:00 committed by Eric Liang
parent 07d8cbf414
commit 447604a9fe

View file

@ -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;