[ https://issues.apache.org/jira/browse/HDFS-13226?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16389822#comment-16389822 ]
Íñigo Goiri commented on HDFS-13226: ------------------------------------ Thanks [~maobaolong] for [^HDFS-13226.002.patch]. It makes sense to not have the check. For the unit test, for readability I would write it as: {code} @Test public void testCreateInvalidEntry() throws Exception { String[] argv = new String[] { "-add", "test-createInvalidEntry", "ns0", "/createInvalidEntry"}; Assert.assertEquals(-1, ToolRunner.run(admin, argv)); argv = new String[] { "-add", "/test-createInvalidEntry", "ns0", "createInvalidEntry"}; Assert.assertEquals(-1, ToolRunner.run(admin, argv)); argv = new String[] { "-add", null, "ns0", "/createInvalidEntry"}; Assert.assertEquals(-1, ToolRunner.run(admin, argv)); argv = new String[] { "-add", "/test-createInvalidEntry", "ns0", null}; Assert.assertEquals(-1, ToolRunner.run(admin, argv)); argv = new String[] { "-add", "", "ns0", "/createInvalidEntry"}; Assert.assertEquals(-1, ToolRunner.run(admin, argv)); argv = new String[] { "-add", "/test-createInvalidEntry", null, "/createInvalidEntry"}; assertEquals(-1, ToolRunner.run(admin, argv)); argv = new String[] { "-add", "/test-createInvalidEntry", "", "/createInvalidEntry"}; assertEquals(-1, ToolRunner.run(admin, argv)); } {code} After checking the patch, I also realize that given that we are catching the return value and then returning the {{IllegalArgumentException}}, it may make sense to actually throw the exception directly with the proper message in {{validate()}}. Sorry for changing my mind. > RBF: We should throw the failure validate and refuse this mount entry > --------------------------------------------------------------------- > > Key: HDFS-13226 > URL: https://issues.apache.org/jira/browse/HDFS-13226 > Project: Hadoop HDFS > Issue Type: Sub-task > Components: hdfs > Affects Versions: 3.2.0 > Reporter: maobaolong > Assignee: maobaolong > Priority: Major > Labels: RBF > Fix For: 3.2.0 > > Attachments: HDFS-13226.001.patch, HDFS-13226.002.patch > > > one of the mount entry source path rule is that the source path must start > with '\', somebody didn't follow the rule and execute the following command: > {code:bash} > $ hdfs dfsrouteradmin -add addnode/ ns1 /addnode/ > {code} > But, the console show we are successful add this entry. -- 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