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 2016/05/26 16:24:13 UTC

[jira] [Updated] (ACCUMULO-3331) Dead/invalid code in TabletServer#verifyTabletInformation

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

Mike Drob updated ACCUMULO-3331:
--------------------------------
    Fix Version/s:     (was: 1.7.2)
                   1.7.3

> Dead/invalid code in TabletServer#verifyTabletInformation
> ---------------------------------------------------------
>
>                 Key: ACCUMULO-3331
>                 URL: https://issues.apache.org/jira/browse/ACCUMULO-3331
>             Project: Accumulo
>          Issue Type: Improvement
>          Components: tserver
>    Affects Versions: 1.5.2, 1.6.1
>            Reporter: Josh Elser
>            Assignee: Josh Elser
>            Priority: Trivial
>             Fix For: 1.7.3, 1.8.0
>
>
> A couple of things: tabletsKeyValues is passed in but not returned -- the original map has to be updated, can't assign a new map to the variable otherwise the caller won't see it.
> Additionally, the caller always passes in a new map (never null). We should just assert that to be non-null. Checking for a non-null map is nonsensical for the previous reason as well.
> {code}
>     // only populate map after success
>     if (tabletsKeyValues == null) {
>       tabletsKeyValues = tkv;
>     } else {
>       tabletsKeyValues.clear();
>       tabletsKeyValues.putAll(tkv);
>     }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)