We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RaftActor sends NoOp to ReplicationActor however receiveReplica may not handle the event because users are not interested in the event.
RaftActor
NoOp
ReplicationActor
receiveReplica
Users show a lot of warnings that is produced by following the method
private[this] def innerApplyEvent(event: Any, logEntryIndex: LogEntryIndex): Unit = { if (logEntryIndex > lastAppliedLogEntryIndex) { receiveReplica.applyOrElse[Any, Unit]( event, event => { log.warning("unhandled {} by receiveReplica", event) }, ) lastAppliedLogEntryIndex = logEntryIndex } } akka-entity-replication/ReplicationActor.scala at v1.0.0 · lerna-stack/akka-entity-replication
private[this] def innerApplyEvent(event: Any, logEntryIndex: LogEntryIndex): Unit = { if (logEntryIndex > lastAppliedLogEntryIndex) { receiveReplica.applyOrElse[Any, Unit]( event, event => { log.warning("unhandled {} by receiveReplica", event) }, ) lastAppliedLogEntryIndex = logEntryIndex } }
akka-entity-replication/ReplicationActor.scala at v1.0.0 · lerna-stack/akka-entity-replication
The text was updated successfully, but these errors were encountered:
No branches or pull requests
RaftActor
sendsNoOp
toReplicationActor
howeverreceiveReplica
may not handle the event because users are not interested in the event.Users show a lot of warnings that is produced by following the method
The text was updated successfully, but these errors were encountered: