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);
|
inbound.closeAbnormal(shutdownStatus);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
synchronized (this) {
|
||||||
notifyTerminated();
|
notifyTerminated();
|
||||||
|
}
|
||||||
releaseExecutors();
|
releaseExecutors();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue