@@ -233,14 +233,19 @@ public Mono<Void> pauseConnector(String connectorName) throws WebClientResponseE
233
233
return withRetryOnConflictOrRebalance (super .pauseConnector (connectorName ));
234
234
}
235
235
236
+ @ Override
237
+ public Mono <ResponseEntity <Void >> pauseConnectorWithHttpInfo (String connectorName ) throws WebClientResponseException {
238
+ return withRetryOnConflictOrRebalance (super .pauseConnectorWithHttpInfo (connectorName ));
239
+ }
240
+
236
241
@ Override
237
242
public Mono <Void > stopConnector (String connectorName ) throws WebClientResponseException {
238
- return withRetryOnConflict (super .stopConnector (connectorName ));
243
+ return withRetryOnConflictOrRebalance (super .stopConnector (connectorName ));
239
244
}
240
245
241
246
@ Override
242
- public Mono <ResponseEntity <Void >> pauseConnectorWithHttpInfo (String connectorName ) throws WebClientResponseException {
243
- return withRetryOnConflictOrRebalance (super .pauseConnectorWithHttpInfo (connectorName ));
247
+ public Mono <ResponseEntity <Void >> stopConnectorWithHttpInfo (String connectorName ) throws WebClientResponseException {
248
+ return withRetryOnConflictOrRebalance (super .stopConnectorWithHttpInfo (connectorName ));
244
249
}
245
250
246
251
@ Override
@@ -266,6 +271,18 @@ public Mono<ResponseEntity<Void>> restartConnectorTaskWithHttpInfo(String connec
266
271
return withRetryOnConflictOrRebalance (super .restartConnectorTaskWithHttpInfo (connectorName , taskId ));
267
272
}
268
273
274
+ @ Override
275
+ public Mono <Void > resetConnectorOffsets (String connectorName )
276
+ throws WebClientResponseException {
277
+ return withRetryOnConflictOrRebalance (super .resetConnectorOffsets (connectorName ));
278
+ }
279
+
280
+ @ Override
281
+ public Mono <ResponseEntity <Void >> resetConnectorOffsetsWithHttpInfo (String connectorName )
282
+ throws WebClientResponseException {
283
+ return withRetryOnConflictOrRebalance (super .resetConnectorOffsetsWithHttpInfo (connectorName ));
284
+ }
285
+
269
286
@ Override
270
287
public Mono <Void > resumeConnector (String connectorName ) throws WebClientResponseException {
271
288
return withRetryOnRebalance (super .resumeConnector (connectorName ));
0 commit comments