marcpf commented on code in PR #42:
URL: 
https://github.com/apache/sling-org-apache-sling-testing-clients/pull/42#discussion_r1067849344


##########
src/main/java/org/apache/sling/testing/clients/util/ServerErrorRetryStrategy.java:
##########
@@ -80,4 +83,32 @@ private boolean responseRetryCondition(final HttpResponse 
response, int... expec
                     statusCode < SC_INTERNAL_SERVER_ERROR + 100;
         }
     }
+
+    /**
+     * Best effort attempt to build a request detail string for logging.
+     */
+    private String getRequestDetails(HttpContext context) {
+        String details = "Not available";
+        HttpClientContext clientContext = HttpClientContext.adapt(context);
+        HttpRequestWrapper wrapper = 
clientContext.getAttribute(HttpClientContext.HTTP_REQUEST, 
HttpRequestWrapper.class);
+        if (wrapper != null) {
+            details = wrapper.toString();

Review Comment:
   Thanks a lot @bdelacretaz for the feedback. I agree, `wrapper.toString()` is 
a bit vague. I replaced it, building the line by myself.  



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

Reply via email to