Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deadlock in sipcontainer caused by proxy branch timeout #27033

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1185,7 +1185,9 @@ private void executeTimeOut(boolean isTimeout) {
* should be used to send the request out.
*
*/
public synchronized void proxyTimedOut(boolean isTimeout){

//remove synchronized as it caused deadlock
public void proxyTimedOut(boolean isTimeout){

if (c_logger.isTraceDebugEnabled()) {
c_logger.traceDebug(this, "proxyTimedOut", getMyInfo() );
Expand All @@ -1194,7 +1196,7 @@ public synchronized void proxyTimedOut(boolean isTimeout){
_parentTimedOut = true;

executeTimeOut(isTimeout);
}
}

/**
* Gets the branch Id of this Proxy Branch from the top via header.
Expand Down