An Azure service that provides a general-purpose, serverless container platform.
Hi @Santi Cuni
Thank you for sharing how you were able to resolve the issue. As you identified, the environment variable used for frontend‑to‑backend communication was being overwritten because load_dotenv(override=True) was configured in both containers. Each time the Python application loaded, this caused the correct FQDN to be replaced with the local value. Once you removed the override=True parameter, the correct FQDN was retained and the communication started working as expected.
We truly appreciate the time and effort you invested in troubleshooting and resolving the issue independently, as well as for sharing the root cause with us.