kirktrue commented on a change in pull request #11838:
URL: https://github.com/apache/kafka/pull/11838#discussion_r818911900
##########
File path:
connect/runtime/src/main/java/org/apache/kafka/connect/runtime/rest/RestClient.java
##########
@@ -139,6 +139,9 @@
Response.Status.INTERNAL_SERVER_ERROR.getStatusCode(),
"Unexpected status code when handling forwarded
request: " + responseCode);
}
+ } catch(ConnectRestException e) {
Review comment:
Looks like there are some checkstyle violations in the commit.
It's probably choking on not having a space between the `catch` and open
parenthesis.
```suggestion
} catch (ConnectRestException e) {
```
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]