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
If the instrumentation generates a lot of messages it may deadlock the traced application on exit - the internal message queue is using backoff sleep but does not correctly handle InterruptedException effectively causing all other threads attempting to send a BTrace message to get locked.
The solution is to properly handle InterruptedException
The text was updated successfully, but these errors were encountered:
If the instrumentation generates a lot of messages it may deadlock the traced application on exit - the internal message queue is using backoff sleep but does not correctly handle
InterruptedException
effectively causing all other threads attempting to send a BTrace message to get locked.The solution is to properly handle
InterruptedException
The text was updated successfully, but these errors were encountered: