79497544

Date: 2025-03-10 09:28:18
Score: 2
Natty:
Report link

sorry about the late reply i don't monitor Stackoverflow regular. If you put future questions on our Github issues there is a bigger chance that someone from the team sees it.

About your question there are two database connections used for Scorpio. The reactive client for Postgres for basically everything but migration and JDBC for flyway migration.

You are not overwriting the reactive client with the JDBC url.

Basically the best would be to overwrite those two

quarkus.datasource.jdbc.url=${jdbcurl}
quarkus.datasource.reactive.url=postgresql://${mysettings.postgres.host}:${mysettings.postgres.port}/${mysettings.postgres.database-name}

with QUARKUS_DATASOURCE_REACTIVE_URL and QUARKUS_DATASOURCE_JDBC_URL as env var.

to my knowledge you should be able to set ssl require also just in the reactive url as param.

There are no config parameters in Scorpio which require a rebuild.

BR

Scorpio

Reasons:
  • Blacklisted phrase (1): Stackoverflow
  • Long answer (-0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: ScorpioBroker