We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59263be commit b9820f3Copy full SHA for b9820f3
iotdb-client/cli/src/main/java/org/apache/iotdb/cli/AbstractCli.java
@@ -321,9 +321,7 @@ static String[] removePasswordArgs(String[] args) {
321
}
322
323
if (index >= 0) {
324
- if (index + 1 >= args.length
325
- || args[index + 1].startsWith("-")
326
- || (keywordSet.contains(args[index + 1]))) {
+ if (index + 1 >= args.length || keywordSet.contains(args[index + 1])) {
327
return ArrayUtils.remove(args, index);
328
329
0 commit comments