ashoke-cube commented on code in PR #16095: URL: https://github.com/apache/kafka/pull/16095#discussion_r1632856777
########## connect/runtime/src/main/java/org/apache/kafka/connect/runtime/WorkerConnector.java: ########## @@ -231,6 +231,12 @@ private synchronized void onFailure(Throwable t) { if (this.state == State.FAILED) return; + // Call stop() on the connector to release its resources. Connector + // could fail in the start() method, which is why we call stop() on + // INIT state as well. + if (this.state == State.STARTED || this.state == State.INIT) + connector.stop(); Review Comment: Hey @gharris1727, Thank you for taking a look. Apologies for the late response. I missed the review notification. I will take a look and get back to you. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org