Copilot commented on code in PR #514: URL: https://github.com/apache/atlas/pull/514#discussion_r2772809523
########## webapp/src/main/java/org/apache/atlas/web/service/AtlasDebugMetricsSink.java: ########## @@ -19,7 +19,7 @@ import org.apache.atlas.web.model.DebugMetrics; import org.apache.commons.lang3.StringUtils; -import org.apache.hadoop.hbase.shaded.org.apache.commons.configuration2.SubsetConfiguration; +import org.apache.hadoop.hbase.shaded.org.apache.commons.configuration.SubsetConfiguration; Review Comment: The import path changed from `configuration2.SubsetConfiguration` to `configuration.SubsetConfiguration`. This represents a downgrade from Apache Commons Configuration 2.x to 1.x, which have incompatible APIs. Verify that the SubsetConfiguration API usage in this class is compatible with Commons Configuration 1.x, as method signatures and behavior differ between versions. ```suggestion import org.apache.commons.configuration.SubsetConfiguration; ``` -- 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]
