RPC#stopProxy throws NullPointerExcption if getProxyEngine(proxy) returns null ------------------------------------------------------------------------------
Key: HADOOP-6570 URL: https://issues.apache.org/jira/browse/HADOOP-6570 Project: Hadoop Common Issue Type: Bug Reporter: Hairong Kuang Assignee: Hairong Kuang {nonformat} public static void stopProxy(Object proxy) { if (proxy!=null) { getProxyEngine(proxy).stopProxy(proxy); } } {/nonformat) The method should check if getProxyEngine(proxy) returns null or not before stopProxy is called. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.