Brijeshthummar02 opened a new pull request, #6532: URL: https://github.com/apache/gravitino/pull/6532
#### **What changes were proposed in this pull request?** - Removed the incorrect `@VisibleForTesting` annotation from `ICEBERG_CATALOG_CACHE_ENABLED` in `IcebergPropertiesConstants.java`. - This constant is used in production code inside `IcebergPropertiesConverter.java`, so marking it as **only for testing** is incorrect. #### **Why are the changes needed?** - `ICEBERG_CATALOG_CACHE_ENABLED` is being used inside `IcebergPropertiesConverter.java` to set catalog properties. - The `@VisibleForTesting` annotation suggests that the constant should only be accessed in test cases, which is misleading and incorrect. - This fix ensures that the constant is correctly available for production use. #### **Fix: #6529 ** #### **Does this PR introduce any user-facing change?** - **No user-facing changes.** This is an internal improvement in the codebase. -- 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]
