We are upgrading our Play Framework application from 2.7 to 2.9, along with ebean. We were successfully using a read replica with 2.7, but with the upgrade, it does not appear to be picking up the configuration properly.
I have found little documentation on this, but based on what I have read, I believe it should be configurable as such:
db.default.driver = org.postgresql.Driver
db.default.url = "postgres://xxx"
db.default.readOnlyUrl="postgres://xxx"
With this configuration, the default data source works properly, but the read replica is never used.
Thanks in advance for your help.