[
https://issues.apache.org/jira/browse/HDFS-10410?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15285698#comment-15285698
]
Hudson commented on HDFS-10410:
-------------------------------
FAILURE: Integrated in Hadoop-trunk-Commit #9771 (See
[https://builds.apache.org/job/Hadoop-trunk-Commit/9771/])
HDFS-10410. RedundantEditLogInputStream.LOG is set to wrong class. (John (lei:
rev 6a6e74acf5c38a4995c4622148721cfe2f1fbdad)
*
hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/RedundantEditLogInputStream.java
> RedundantEditLogInputStream#LOG is set to wrong class
> -----------------------------------------------------
>
> Key: HDFS-10410
> URL: https://issues.apache.org/jira/browse/HDFS-10410
> Project: Hadoop HDFS
> Issue Type: Bug
> Affects Versions: 2.6.0
> Reporter: John Zhuge
> Assignee: John Zhuge
> Priority: Minor
> Labels: supportability
> Attachments: HDFS-10410.001.patch
>
>
> Found the issue while analyzing a log message that points to the wrong class.
> {code}
> class RedundantEditLogInputStream extends EditLogInputStream {
> public static final Log LOG =
> LogFactory.getLog(EditLogInputStream.class.getName());
> {code}
> should be changed to:
> {code}
> public static final Log LOG =
> LogFactory.getLog(RedundantEditLogInputStream.class.getName());
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]