Skip to content

Commit

Permalink
[hotfix][docs] Fix scan.bounded.mode missing forward options
Browse files Browse the repository at this point in the history
  • Loading branch information
Tan-JiaLiang committed Oct 13, 2023
1 parent b09928d commit 81a49a1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/content/docs/connectors/table/kafka.md
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,7 @@ Connector Options
<tr>
<td><h5>scan.bounded.mode</h5></td>
<td>optional</td>
<td>yes</td>
<td style="word-wrap: break-word;">unbounded</td>
<td>Enum</td>
<td>Bounded mode for Kafka consumer, valid values are <code>'latest-offset'</code>, <code>'group-offsets'</code>, <code>'timestamp'</code> and <code>'specific-offsets'</code>.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,10 @@ public Set<ConfigOption<?>> forwardOptions() {
SCAN_STARTUP_TIMESTAMP_MILLIS,
SINK_PARTITIONER,
SINK_PARALLELISM,
TRANSACTIONAL_ID_PREFIX)
TRANSACTIONAL_ID_PREFIX,
SCAN_BOUNDED_MODE,
SCAN_BOUNDED_SPECIFIC_OFFSETS,
SCAN_BOUNDED_TIMESTAMP_MILLIS)
.collect(Collectors.toSet());
}

Expand Down

0 comments on commit 81a49a1

Please sign in to comment.