Fix bug in Actor due to timer serialization. (#139)

This commit is contained in:
Artur Souza 2020-01-21 21:36:24 -08:00 committed by Leon Mai
parent a99e8adc8f
commit 0f008b43d8
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ public abstract class AbstractActor {
this.actorRuntimeContext.getActorTypeInformation().getName(),
this.id.toString(),
actorTimer.getName(),
this.actorRuntimeContext.getObjectSerializer().serialize(actorTimer));
INTERNAL_SERIALIZER.serialize(actorTimer));
} catch (Exception e) {
return Mono.error(e);
}