You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 7, 2025. It is now read-only.
To a remote host, custom user id and password with database 'merchant_gateway' by changing the above string and also removing the depends_on in the docker-compose file.
Expected Outcome
Developer is able to point the mapi server to a remote database with different User Id than postgres and still connect to schema merchant_gateway
Actual Outcome
Unable to connect to remote schema because the code expects postgres as database name.
Can you please provide an example connecting to a pg database that is external link (ie: not dependant on the docker-compose.yml database dependency).
What I found is that the code assumes the database name is 'Postgres' and cannot connect
For instance, assume we wish to change:
To a remote host, custom user id and password with database 'merchant_gateway' by changing the above string and also removing the
depends_onin the docker-compose file.Expected Outcome
Developer is able to point the mapi server to a remote database with different User Id than
postgresand still connect to schemamerchant_gatewayActual Outcome
Unable to connect to remote schema because the code expects
postgresas database name.