Samunroyu opened a new pull request, #1970: URL: https://github.com/apache/incubator-pegasus/pull/1970
### What problem does this PR solve? <!--add issue link with summary if exists--> In the kerberos environment, java client will check TGT and relogin kerberos if needed every ten seconds by a thread. But when client requests table which doesnt exist will cause threads leak. The main reason cause this problem is set this thread to a deamon thread and dont catch exception. ### What is changed and how does it work? Set this thread to user thread. And catch Interruptexception to keep thread work. ##### Tests <!-- At least one of them must be included. --> - Unit test ##### Code changes - KerberosProtocol.java -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
