adnanhemani commented on code in PR #2482: URL: https://github.com/apache/polaris/pull/2482#discussion_r2361535446
########## runtime/service/src/main/java/org/apache/polaris/service/admin/PolarisServiceImpl.java: ########## @@ -165,7 +160,8 @@ private static Response toResponse(BaseResult result, Response.Status successSta .entity(icebergErrorResponse) .build(); } - return Response.status(successStatus).build(); + Response.ResponseBuilder responseBuilder = Response.status(successStatus); + return responseBuilder.build(); Review Comment: Interesting, I don't know what happened and why it didn't pick up. Thanks for rechecking! Made the changes now (and have verified)! -- 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: issues-unsubscr...@polaris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org