Github user mmiklavc commented on a diff in the pull request: https://github.com/apache/metron/pull/785#discussion_r143546323 --- Diff: metron-platform/metron-parsers/src/main/java/org/apache/metron/parsers/topology/ParserTopologyCLI.java --- @@ -285,7 +285,14 @@ public static Options getOptions() { } private static CommandLine parse(Options options, String[] args) { - CommandLineParser parser = new PosixParser(); + CommandLineParser parser = new PosixParser() { + @Override + protected void processOption(String arg, ListIterator iter) throws ParseException { --- End diff -- Is this to ignore options passed that we don't provide support for, and can you make a small comment about it?
---