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
The number setted with max_connection_rate will exceed after a period of time of running.
I checked the code about lib.rs and openssl.rs in actix-tls/src, and can find only the code to increase the MAX_CONN_COUNTER counter, no decreasing action.
I think this is a bug.
The text was updated successfully, but these errors were encountered:
From what i can see, the thread local counter is incremented when a guard is created and decremented when the guard is dropped. Can you show where you think the problem is?
Yes it will decrease, but the counter num will totally increase over time.
We are running a SSE long-polling connections service, I set the max_connection_rate to 2560. When the most clients has connected to our server, and the connections peak is over, the connection count is decreasing, the MAX_CONN_COUNTER value is still increasing, reaches the limit, while the connection rate is obviously low.
The number setted with max_connection_rate will exceed after a period of time of running.
I checked the code about lib.rs and openssl.rs in actix-tls/src, and can find only the code to increase the MAX_CONN_COUNTER counter, no decreasing action.
I think this is a bug.
The text was updated successfully, but these errors were encountered: