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
I had encountered a problem recently.
When my server was trying to connect to the Redis Server, I made a mistake passing the SSL param to the string "False" rather than a boolean False param.
It prevented my server from receiving any requests.
When I tried to access http://localhost:8080 from a web browser or even try curl http://localhost:8080, it did not receive any responses. The server did not raise any exceptions.
When I changed the SSL param from string to boolean, my server could receive the incoming requests.
I thought that the wrong string param I passed kept my server and Redis Server in an infinite loop without a timeout.
It blocked the main Django app thread. Therefore, the server could not receive any requests.
Hi everyone,
I had encountered a problem recently.
When my server was trying to connect to the Redis Server, I made a mistake passing the SSL param to the string "False" rather than a boolean False param.
It prevented my server from receiving any requests.
When I tried to access http://localhost:8080 from a web browser or even try
curl http://localhost:8080
, it did not receive any responses. The server did not raise any exceptions.When I changed the SSL param from string to boolean, my server could receive the incoming requests.
I thought that the wrong string param I passed kept my server and Redis Server in an infinite loop without a timeout.
It blocked the main Django app thread. Therefore, the server could not receive any requests.
Here is my wrong config
The text was updated successfully, but these errors were encountered: