mirror of https://github.com/dapr/java-sdk.git
Fix bug in Actor due to timer serialization. (#139)
This commit is contained in:
parent
a99e8adc8f
commit
0f008b43d8
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue