C0urante commented on code in PR #13434: URL: https://github.com/apache/kafka/pull/13434#discussion_r1154508578
########## connect/runtime/src/main/java/org/apache/kafka/connect/runtime/AbstractHerder.java: ########## @@ -866,4 +867,18 @@ public List<ConfigKeyInfo> connectorPluginConfig(String pluginName) { } } + @Override + public void connectorOffsets(String connName, Callback<ConnectorOffsets> cb) { Review Comment: It's just a preventative measure to keep the threading model simple. Right now (with the exception of parallel start/stop of connectors/tasks) we don't make any concurrent calls to the `Worker` class. It may not be a problem for this specific case but it makes things easier to reason about. -- 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