Akka and JVM API

I am trying to work with the JVM API in scala; however, I am finding that every time I run my app, it is sending old messages. I am new to akka so I am not sure where it is persisting them / why it is re-sending them.
The expected case is that when I run the APP, it consumes my data and sends it; however, it is sending an older batch of data first.

My example code looks like:

import scala.io.Source
import scala.concurrent.duration._

import akka.actor._
import akka.actor.Status.Failure
import akka.actor.{ ActorLogging, Actor, Props, ActorSystem }
import argonaut., Argonaut.
import eventstore._
import eventstore.tcp.ConnectionActor
import scalaz., Scalaz.

import databazaar.csv._

object DataWriter {
def writeFile(streamId: String, path: String): Unit= {
fromCsvReader(streamId, CsvReader open path)
}

def writeSource(streamId: String, source: Source): Unit = {
fromCsvReader(streamId, new CsvReader(source))
}

private def toSnakeCase(cs: String): String = cs.toLowerCase.replace(’ ', ‘_’)

private def mapToJsonString(map: Map[String, String]): String = {
map.map {
case (k, v) => s""""${toSnakeCase(k)}":"${v}""""
}.mkString("{", “,”, “}”)
}

def fromCsvReader(streamId: String, csvReader: CsvReader): Unit = {
val system = ActorSystem()
val connection = system.actorOf(ConnectionActor.props())
implicit val writeResult = system.actorOf(Props[WriteResult])
connection ! WriteEvents(EventStream.Id(streamId), csvReader.map {
m => EventData(
streamId + “-event”, data = Content.Json(mapToJsonString(m)))
}.toList)
}

class WriteResult extends Actor with ActorLogging {
def receive = {
case WriteEventsCompleted(range, position) =>
log.info(“range: {}, position: {}”, range, position)
context.system.shutdown()

  case Failure(e: EsException) =>
    log.error(e.toString)
    context.system.shutdown()
}

}
}

``

Maybe it is not akka; however, the issue I am seeing is that when I load from my csvReader object, I get events that are dated in the past, even when I clear the database first.

From the code you provided I am not sure what your reading from
csvreader would have to do with event store?

You have not provided as I see any code reading from event store so
maybe I am misunderstanding you?

Oh, I am using the stream viewer in the browser by connecting to localhost in my browser. The issue is that when I delete all the data in the database and restart both my test loader and the db, when I write data, I am getting events timestamped from yesterday from an old test.

Browser caching. On dev I don't know if it was pushed to 3.0.3 there
is a command line option for development mode to disable caching

Ah, thank you very much