When running the application, a connection error occurs with Redis, causing the service to exit. This issue happens because the application cannot connect to 127.0.0.1:6379, resulting in an ECONNREFUSED error in the logs.
The application should successfully connect to Redis at 127.0.0.1:6379, or an alternative Redis instance if configured, without raising connection errors. The application should start and run as expected without interruption.
Technical inputs
The application is configured to connect to Redis on the localhost (127.0.0.1) at port 6379.
The issue might be fixable by:
Ensuring Redis is running on the expected address and port.
Checking firewall settings or Docker container networking if Redis runs in a container.
Updating environment configurations if Redis is hosted remotely.
Hey @KazeroG - we don't officially maintain the Render.yaml but a pull request would be most welcome! It seems it's missing a redis in Render.yaml https://docs.render.com/redis
Bug Description
When running the application, a connection error occurs with Redis, causing the service to exit. This issue happens because the application cannot connect to 127.0.0.1:6379, resulting in an ECONNREFUSED error in the logs.
Expected behavior
The application should successfully connect to Redis at 127.0.0.1:6379, or an alternative Redis instance if configured, without raising connection errors. The application should start and run as expected without interruption.
Technical inputs
other info