Skip to content

Commit aa4939a

Browse files
committed
cleanup
1 parent 0c1737c commit aa4939a

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This client library is released on Maven Central. Add a new dependency to your
1212
<dependency>
1313
<groupId>org.sourcelab</groupId>
1414
<artifactId>kafka-connect-client</artifactId>
15-
<version>3.1.4</version>
15+
<version>4.0.0</version>
1616
</dependency>
1717
```
1818

src/main/java/org/sourcelab/kafka/connect/apiclient/request/post/PostConnectorRestart.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ public PostConnectorRestart(final String connectorName) {
4545

4646
/**
4747
* Only available from Kafka Connect version 3.0.0 and up.
48-
* @param includeTasks Specifies whether to restart the connector instance and task instances (includeTasks=true`) or just the connector instance (includeTasks=false).
48+
* @param includeTasks Specifies whether to restart the connector instance and task instances (includeTasks=true`) or
49+
* just the connector instance (includeTasks=false).
4950
* @return self reference for method chaining.
5051
*/
5152
public PostConnectorRestart withIncludeTasks(final boolean includeTasks)
@@ -56,7 +57,8 @@ public PostConnectorRestart withIncludeTasks(final boolean includeTasks)
5657

5758
/**
5859
* Only available from Kafka Connect version 3.0.0 and up.
59-
* @param onlyFailed specifies whether to restart just the instances with a FAILED status (onlyFailed=true) or all instances (onlyFailed=false).
60+
* @param onlyFailed specifies whether to restart just the instances with a FAILED status (onlyFailed=true)
61+
* or all instances (onlyFailed=false).
6062
* @return self reference for method chaining.
6163
*/
6264
public PostConnectorRestart withOnlyFailed(final boolean onlyFailed)

0 commit comments

Comments
 (0)