We are using Eclipse to remote debug Lagom and Akka applications, but Eclipse is not allowing us to put breakpoints in the code.
I am able to put breakpoints in my Scala code, but not in the Akka library.
For example: I am trying add a breakpoint on the second line:
override def eventsByTag(tag: String, offset: Long, max: Long): Source[Try[(PersistentRepr, Set[String], JournalRow)], NotUsed] =
Source.fromPublisher(db.stream(queries.eventsByTag(s"%$tag%", offset, max).result))
.via(serializer.deserializeFlow)