mirror of https://github.com/grpc/grpc-java.git
core: re-enable panic mode after all affected internal tests have been fixed. (#4245)
This commit is contained in:
parent
6836b31fb3
commit
1e0875dff7
|
|
@ -119,11 +119,7 @@ final class ManagedChannelImpl extends ManagedChannel implements Instrumented<Ch
|
|||
@Override
|
||||
void handleUncaughtThrowable(Throwable t) {
|
||||
super.handleUncaughtThrowable(t);
|
||||
// Disabled because it breaks some tests, as it detects pre-existing issues.
|
||||
// See #3293
|
||||
if (false) {
|
||||
panic(t);
|
||||
}
|
||||
panic(t);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue