File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed
api/src/main/java/io/kafbat/ui/client Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -267,20 +267,26 @@ public Mono<ResponseEntity<Void>> restartConnectorTaskWithHttpInfo(String connec
267267 }
268268
269269 @ Override
270- public Mono <Void > resumeConnector (String connectorName ) throws WebClientResponseException {
271- return withRetryOnRebalance (super .resumeConnector (connectorName ));
270+ public Mono <Void > resetConnectorOffsets (String connectorName )
271+ throws WebClientResponseException {
272+ return withRetryOnConflictOrRebalance (super .resetConnectorOffsets (connectorName ));
272273 }
273274
274275 @ Override
275- public Mono <ResponseEntity <Void >> resumeConnectorWithHttpInfo (String connectorName )
276+ public Mono <ResponseEntity <Void >> resetConnectorOffsetsWithHttpInfo (String connectorName )
276277 throws WebClientResponseException {
277- return withRetryOnConflictOrRebalance (super .resumeConnectorWithHttpInfo (connectorName ));
278+ return withRetryOnConflictOrRebalance (super .resetConnectorOffsetsWithHttpInfo (connectorName ));
279+ }
280+
281+ @ Override
282+ public Mono <Void > resumeConnector (String connectorName ) throws WebClientResponseException {
283+ return withRetryOnRebalance (super .resumeConnector (connectorName ));
278284 }
279285
280286 @ Override
281- public Mono <ResponseEntity <Void >> resetConnectorOffsets (String connectorName )
287+ public Mono <ResponseEntity <Void >> resumeConnectorWithHttpInfo (String connectorName )
282288 throws WebClientResponseException {
283- return withRetryOnConflictOrRebalance (super .resetConnectorOffsets (connectorName ));
289+ return withRetryOnConflictOrRebalance (super .resumeConnectorWithHttpInfo (connectorName ));
284290 }
285291
286292 @ Override
You can’t perform that action at this time.
0 commit comments