You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-issues@hadoop.apache.org by "John Zhuge (JIRA)" <ji...@apache.org> on 2017/06/08 21:04:18 UTC

[jira] [Updated] (HADOOP-14511) WritableRpcEngine.Invocation#toString NPE on null parameters

     [ https://issues.apache.org/jira/browse/HADOOP-14511?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

John Zhuge updated HADOOP-14511:
--------------------------------
    Status: Patch Available  (was: Open)

> WritableRpcEngine.Invocation#toString NPE on null parameters
> ------------------------------------------------------------
>
>                 Key: HADOOP-14511
>                 URL: https://issues.apache.org/jira/browse/HADOOP-14511
>             Project: Hadoop Common
>          Issue Type: Bug
>          Components: ipc
>    Affects Versions: 2.8.0
>            Reporter: John Zhuge
>            Assignee: John Zhuge
>            Priority: Minor
>         Attachments: HADOOP-14511.001.patch
>
>
> WritableRpcEngine.Invocation#toString will throw NPE if {{parameters}} is null:
> {code:title=WritableRpcEngine.Invocation#toString}
>       buffer.append(methodName);
>       buffer.append("(");
>       for (int i = 0; i < parameters.length; i++) {
>         if (i != 0)
>           buffer.append(", ");
>         buffer.append(parameters[i]);
>       }
>       buffer.append(")");
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

---------------------------------------------------------------------
To unsubscribe, e-mail: common-issues-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-issues-help@hadoop.apache.org