sadanand48 opened a new pull request, #7036: URL: https://github.com/apache/ozone/pull/7036
## What changes were proposed in this pull request? GRPC uses Http internally for its connections and due to this if http proxy is configured for any Ozone process using grpc , it directs each call through the proxy even for grpc which is not [desirable](https://github.com/apache/ratis-thirdparty/pull/53#issuecomment-2262233350) for performance. Hence disabling proxy for grpc connections that ozone uses. This has been fixed in RATIS via RATIS-2133. ## What is the link to the Apache JIRA https://issues.apache.org/jira/browse/HDDS-11257 ## How was this patch tested? Tested a unit test with this commit having proxy config set in the maven sure fire plugin ```xml <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>-Dhttps.proxyHost=127.0.0.1</argLine> </configuration> </plugin> ``` https://github.com/sadanand48/hadoop-ozone/actions/runs/10261429774/job/28389549624 -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
