jolshan commented on code in PR #16443: URL: https://github.com/apache/kafka/pull/16443#discussion_r1779287429
########## metadata/src/main/java/org/apache/kafka/controller/QuorumController.java: ########## @@ -2314,11 +2315,24 @@ public CompletableFuture<UpdateFeaturesResponseData> updateFeatures( }).thenApply(result -> { UpdateFeaturesResponseData responseData = new UpdateFeaturesResponseData(); responseData.setResults(new UpdateFeaturesResponseData.UpdatableFeatureResultCollection(result.size())); - result.forEach((featureName, error) -> responseData.results().add( - new UpdateFeaturesResponseData.UpdatableFeatureResult() - .setFeature(featureName) - .setErrorCode(error.error().code()) - .setErrorMessage(error.message()))); + Optional<Entry<String, ApiError>> errorEntry = result.entrySet().stream().filter(entry -> + !entry.getValue().error().equals(Errors.NONE)).findFirst(); + + if (errorEntry.isPresent()) { + String errorFeatureName = errorEntry.get().getKey(); + ApiError topError = errorEntry.get().getValue(); + String errorString = errorFeatureName + ":" + topError.error().exceptionName() + " (" + topError.message() + ")"; Review Comment: I think I originally did this to also include the exception name but if we just take it as the top level exception we don't need to do this. -- 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