You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@accumulo.apache.org by "Mike Drob (JIRA)" <ji...@apache.org> on 2014/02/26 20:17:20 UTC

[jira] [Created] (ACCUMULO-2410) TServerUtils no longer needs to catch NPE as a thrift bug workaround

Mike Drob created ACCUMULO-2410:
-----------------------------------

             Summary: TServerUtils no longer needs to catch NPE as a thrift bug workaround
                 Key: ACCUMULO-2410
                 URL: https://issues.apache.org/jira/browse/ACCUMULO-2410
             Project: Accumulo
          Issue Type: Bug
          Components: tserver
    Affects Versions: 1.5.1
            Reporter: Mike Drob
            Priority: Minor
             Fix For: 1.6.0


Since we are using thrift 0.9.0 starting with Accumulo 1.6, we should be able to clean up the following code in {{TServerUtils}}.
{code:java}
        try {
          return other.process(in, out);
        } catch (NullPointerException ex) {
          // THRIFT-1447 - remove with thrift 0.9
          return true;
        }
{code}



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)