core: re-enable panic mode after all affected internal tests have been fixed. (#4245)

This commit is contained in:
Kun Zhang 2018-03-20 13:06:41 -07:00 committed by GitHub
parent 6836b31fb3
commit 1e0875dff7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 5 deletions

View File

@ -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);
}
};