pvillard31 commented on code in PR #9500:
URL: https://github.com/apache/nifi/pull/9500#discussion_r1832723433
##########
nifi-commons/nifi-web-client/src/main/java/org/apache/nifi/web/client/StandardHttpResponseEntity.java:
##########
@@ -32,14 +33,18 @@ class StandardHttpResponseEntity implements
HttpResponseEntity {
private final InputStream body;
+ private final URI requestEndpoint;
+
StandardHttpResponseEntity(
final int statusCode,
final HttpEntityHeaders headers,
- final InputStream body
+ final InputStream body,
+ final URI requestEndpoint
) {
this.statusCode = statusCode;
this.headers = headers;
this.body = body;
+ this.requestEndpoint = requestEndpoint;
Review Comment:
```suggestion
this.uri = uri;
```
--
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]