Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Rename topic.offset.map to topic.offsets.map #103

Merged
merged 1 commit into from
Jul 12, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
type = {DataType.BOOL},
optional = true,
defaultValue = "false"),
@Parameter(name = "topic.offset.map",
@Parameter(name = "topic.offsets.map",
description = "This parameter specifies reading offsets for each topic and partition. " +
"The value for this parameter is specified in the following format: \n " +
"`<topic>=<offset>,<topic>=<offset>,`\n " +
Expand Down Expand Up @@ -171,7 +171,7 @@ public class KafkaSource extends Source<KafkaSource.KafkaSourceState> implements
public static final String ADAPTOR_SUBSCRIBER_ZOOKEEPER_CONNECT_SERVERS = "bootstrap.servers";
public static final String ADAPTOR_SUBSCRIBER_PARTITION_NO_LIST = "partition.no.list";
public static final String ADAPTOR_OPTIONAL_CONFIGURATION_PROPERTIES = "optional.configuration";
public static final String TOPIC_OFFSET_MAP = "topic.offset.map";
public static final String TOPIC_OFFSET_MAP = "topic.offsets.map";
public static final String THREADING_OPTION = "threading.option";
public static final String SEQ_ENABLED = "seq.enabled";
public static final String HEADER_SEPARATOR = ",";
Expand Down