mirror of https://github.com/grpc/grpc-java.git
Adding missing synchronization in the runnable that is causing access guard violation error. (#11277)
This commit is contained in:
parent
7fee6a3fea
commit
14fd81f59b
|
|
@ -327,7 +327,9 @@ public abstract class BinderTransport
|
|||
inbound.closeAbnormal(shutdownStatus);
|
||||
}
|
||||
}
|
||||
notifyTerminated();
|
||||
synchronized (this) {
|
||||
notifyTerminated();
|
||||
}
|
||||
releaseExecutors();
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue