Share via

Internal communication between two Azure container app

Santi Cuni 0 Reputation points
2026-03-17T07:08:08.4433333+00:00

I need urgent support because, since yesterday, I have been working to build up two Azure container apps inside the same Azure container environment, and even though all the checks have been done, there is no communication. My email is <PII removed>. I am available right now to talk. I need to go ahead. I have also created two times everything, but nothing changed.

Azure Container Apps
Azure Container Apps

An Azure service that provides a general-purpose, serverless container platform.


1 answer

Sort by: Most helpful
  1. Siddhesh Desai 4,895 Reputation points Microsoft External Staff Moderator
    2026-03-17T07:45:30.4233333+00:00

    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.

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.