Hi all
I am using https://doc.akka.io/docs/akka-persistence-cassandra/current/index.html and would I like to override default configuration.
The default configuration can be found on https://github.com/akka/akka-persistence-cassandra/blob/master/core/src/main/resources/reference.conf.
For example, I would like to override the following options
contact-points = ["127.0.0.1"]
# To connect to the Cassandra hosts with credentials.
# Authentication is disabled if username is not configured.
authentication.username = ""
authentication.password = ""
The question is, how to do it?
Thanks