vamossagar12 commented on code in PR #13530: URL: https://github.com/apache/kafka/pull/13530#discussion_r1164183743
########## connect/runtime/src/main/java/org/apache/kafka/connect/runtime/standalone/StandaloneHerder.java: ########## @@ -229,7 +229,12 @@ private synchronized void putConnectorConfig(String connName, } requestExecutorService.submit(() -> { - updateConnectorTasks(connName); + try { + updateConnectorTasks(connName); + } catch (Throwable t) { + callback.onCompletion(t, null); Review Comment: I see. Thanks for pointing this out. -- 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