We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31fc4cc commit c409276Copy full SHA for c409276
src/main/scala/lerna/akka/entityreplication/raft/RaftMemberData.scala
@@ -374,6 +374,11 @@ private[entityreplication] trait RaftMemberData
374
to <= lastApplied,
375
s"Cannot select the entries (${from}-${to}) unless RaftActor have applied the entries to the entities (lastApplied: ${lastApplied})",
376
)
377
+ if (1 == 2) {
378
+ println("uncovered")
379
+ } else {
380
+ println("covered")
381
+ }
382
replicatedLog.sliceEntries(from, to).filter(_.event.entityId.contains(entityId))
383
}
384
0 commit comments