[ 
https://issues.apache.org/jira/browse/HDFS-14259?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16773227#comment-16773227
 ] 

Íñigo Goiri commented on HDFS-14259:
------------------------------------

Thanks [~RANith], in addition to fixing the checkstyle, I think we can make the 
messages a little more intuitive:
{code}
assertTrue("Wrong safe mode message: " + safeModeMsg, 
safeModeMsg.startsWith("Safe mode is ON."));
...
assertEquals("Wrong safe mode message: " + safeModeMsg, "", safeModeMsg);
{code}

Let's also make the break lines consistent.

> RBF: Fix safemode message for Router
> ------------------------------------
>
>                 Key: HDFS-14259
>                 URL: https://issues.apache.org/jira/browse/HDFS-14259
>             Project: Hadoop HDFS
>          Issue Type: Sub-task
>            Reporter: Íñigo Goiri
>            Assignee: Ranith Sardar
>            Priority: Major
>         Attachments: HDFS-14259-HDFS-13891.000.patch, 
> HDFS-14259-HDFS-13891.001.patch
>
>
> Currently, the {{getSafemode()}} bean checks the state of the Router but 
> returns the error if the status is different than SAFEMODE:
> {code}
>   public String getSafemode() {
>       if (!getRouter().isRouterState(RouterServiceState.SAFEMODE)) {
>         return "Safe mode is ON. " + this.getSafeModeTip();
>       }
>     } catch (IOException e) {
>       return "Failed to get safemode status. Please check router"
>           + "log for more detail.";
>     }
>     return "";
>   }
> {code}
> The condition should be reversed.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: hdfs-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: hdfs-issues-h...@hadoop.apache.org

Reply via email to