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
psql: error: could not translate host name "caf-named-db-.postgres.database.azure.com" to address: Name or service not known
Error: Error occurred while running action:
Error: The process '/usr/bin/psql' failed with exit code 2
Personal workaround:
The code currently not only replaces 'psql' with '', it also (as a second step) replaces '"' with ''. So a functional workaround that I use is adding a rouge " like this:
According to the CAF (Cloud Adoption Framework) the official abbreviation for a PostgreSQL database is
psql
.But the current implementation blindly replaces
'psql'
with''
, which breaks the ability to use this action with such a named DB.Input:
Output:
Personal workaround:
The code currently not only replaces
'psql'
with''
, it also (as a second step) replaces'"'
with''
. So a functional workaround that I use is adding a rouge"
like this:But this is far from ideal 😂
The text was updated successfully, but these errors were encountered: