Skip to content

Commit 36757ad

Browse files
S O'Donnellelek
authored andcommitted
HDDS-1645. Change the version of Pico CLI to the latest 3.x release - 3.9.6
Closes #909
1 parent 0976392 commit 36757ad

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

hadoop-hdds/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ https://maven.apache.org/xsd/maven-4.0.0.xsd">
239239
<dependency>
240240
<groupId>info.picocli</groupId>
241241
<artifactId>picocli</artifactId>
242-
<version>3.5.2</version>
242+
<version>3.9.6</version>
243243
</dependency>
244244
<dependency>
245245
<groupId>com.google.protobuf</groupId>

hadoop-ozone/integration-test/src/test/java/org/apache/hadoop/ozone/ozShell/TestOzoneShell.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,8 @@ public void testListVolume() throws Exception {
631631
err.reset();
632632
args = new String[] {"volume", "list", url + "/", "--user",
633633
user2, "--length", "invalid-length"};
634-
executeWithError(shell, args, "For input string: \"invalid-length\"");
634+
executeWithError(shell, args, "Invalid value for option " +
635+
"'--length': 'invalid-length' is not an int");
635636
}
636637

637638
@Test

0 commit comments

Comments
 (0)