ololo3000 commented on a change in pull request #6928: IGNITE-12250 Adds rest 
requests processing logging.
URL: https://github.com/apache/ignite/pull/6928#discussion_r330063254
 
 

 ##########
 File path: 
modules/core/src/main/java/org/apache/ignite/internal/processors/rest/GridRestProcessor.java
 ##########
 @@ -150,7 +150,11 @@
         }
 
         @Override public IgniteInternalFuture<GridRestResponse> 
handleAsync(GridRestRequest req) {
-            return handleAsync0(req);
+            IgniteInternalFuture<GridRestResponse> res = handleAsync0(req);
+
+            res.listen(fut -> logRestRequestResult(req, fut));
 
 Review comment:
   No, we can't. We need GridRestRequest to be logged and IgniteInternalFuture 
result doesn't provide it.

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


With regards,
Apache Git Services

Reply via email to