You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-dev@hadoop.apache.org by "Hairong Kuang (JIRA)" <ji...@apache.org> on 2007/05/29 20:36:16 UTC

[jira] Commented: (HADOOP-1392) FindBugs : Fix some correctness bugs reported in DFS, FS, etc.

    [ https://issues.apache.org/jira/browse/HADOOP-1392?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12499881 ] 

Hairong Kuang commented on HADOOP-1392:
---------------------------------------

One minor suggestion. For the following fix for NamenodeFsck.java, 
chosenNode = nodes[r.nextInt(Integer.MAX_VALUE) % nodes.length]
I would prefer 
chosenNode = nodes[r.nextInt(nodes.length)]

> FindBugs : Fix some correctness bugs reported in DFS, FS, etc.
> --------------------------------------------------------------
>
>                 Key: HADOOP-1392
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1392
>             Project: Hadoop
>          Issue Type: Bug
>    Affects Versions: 0.12.3
>            Reporter: Raghu Angadi
>            Assignee: Raghu Angadi
>             Fix For: 0.14.0
>
>         Attachments: HADOOP-1392-01.patch
>
>
> Fix some correctness bugs reported by FindBugs in DFS, FS, IO, NET, etc packages.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.