Skip to content

Commit f253eff

Browse files
Make the exclude topic parameter clear
1 parent 0797373 commit f253eff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/radarcns/hdfs/util/commandline/CommandLineArgs.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public class CommandLineArgs {
9393
@Parameter(names = {"--max-files-per-topic"}, description = "Maximum number of records to process, per topic. Set below 1 to disable this option.")
9494
public int maxFilesPerTopic = 0;
9595

96-
@Parameter(names = {"--exclude-topics"}, description = "Comma-separated list of topics to exclude when processing the records.")
96+
@Parameter(names = {"--exclude-topic"}, description = "Topic to exclude when processing the records. Can be supplied more than once to exclude multiple topics.")
9797
public List<String> excludeTopics = new ArrayList<>();
9898

9999
public static <T> T nonNullOrDefault(T value, Supplier<T> defaultValue) {

0 commit comments

Comments
 (0)