mimaison commented on a change in pull request #9726: URL: https://github.com/apache/kafka/pull/9726#discussion_r570545828
########## File path: connect/runtime/src/main/java/org/apache/kafka/connect/runtime/rest/resources/ConnectorsResource.java ########## @@ -188,6 +188,16 @@ public ConnectorInfo getConnector(final @PathParam("connector") String connector return completeOrForwardRequest(cb, "/connectors/" + connector + "/config", "GET", headers, null, forward); } + @GET + @Path("/{connector}/tasks-config") + public Map<ConnectorTaskId, Map<String, String>> getTasksConfig(final @PathParam("connector") String connector, + final @Context HttpHeaders headers, Review comment: You mean something like this? ```java @GET @Path("/{connector}/tasks-config") public Map<ConnectorTaskId, Map<String, String>> getTasksConfig( final @PathParam("connector") String connector, final @Context HttpHeaders headers, final @QueryParam("forward") Boolean forward) throws Throwable { FutureCallback<Map<ConnectorTaskId, Map<String, String>>> cb = new FutureCallback<>(); ... ```` ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org