Russole opened a new pull request, #9460: URL: https://github.com/apache/ozone/pull/9460
## What changes were proposed in this pull request? This PR standardizes configuration key definitions across the codebase. Many configuration classes annotated with @ConfigGroup(prefix = "...") still use unprefixed keys in their @Config(key = ...) entries (e.g., "shutdown.timeout" instead of "ozone.service.shutdown.timeout"). This patch updates those entries to explicitly include the full prefix in the key literal. Benefits of this change include: * Consistent and clearer configuration style across modules. * Fully-qualified keys become searchable directly in the source code. * Avoid ambiguity between prefixed and unprefixed keys. * Improves maintainability and readability of configuration metadata Only keys missing the prefix were updated. Keys already using a fully-qualified name were left unchanged. No functional behavior is modified. ## What is the link to the Apache JIRA https://issues.apache.org/jira/browse/HDDS-14030 ## How was this patch tested? All GitHub CI checks passed successfully. No functional behavior is changed. -- 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]
