adnanhemani commented on code in PR #2482:
URL: https://github.com/apache/polaris/pull/2482#discussion_r2356716883


##########
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:
   Good catch, this is a hangover from some other code I removed. Reverted.



-- 
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

Reply via email to