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
This was preventing the application from making any other http requests and the result to users was that the user token could not be verified. If encountered in the future, it may be possible to kill off these TCP connections or simply restarting the server will work.
A potential fix might be to use the auth0 java library for getting the user profile in Auth0Connection.java, which may manage auth0 connections better.
The text was updated successfully, but these errors were encountered:
We experienced an issue where thousands of connections were being held open to Auth0. A sample connection appeared like this after running
lsof
:This was preventing the application from making any other http requests and the result to users was that the user token could not be verified. If encountered in the future, it may be possible to kill off these TCP connections or simply restarting the server will work.
A potential fix might be to use the auth0 java library for getting the user profile in
Auth0Connection.java
, which may manage auth0 connections better.The text was updated successfully, but these errors were encountered: