This is an automated email from the ASF dual-hosted git repository.
mchades pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/main by this push:
new ba64e2946 [HOTFIX] fix(build): Fix RAT issue in local build (#4464)
ba64e2946 is described below
commit ba64e2946e431c8782b06e4076905f20f4a32c48
Author: Jerry Shao <[email protected]>
AuthorDate: Fri Aug 9 17:26:48 2024 +0800
[HOTFIX] fix(build): Fix RAT issue in local build (#4464)
### What changes were proposed in this pull request?
Due to the Python Gravitino package name change, the RAT check will be
failed in local, so fixing the RAT check to make the build work.
### Why are the changes needed?
The RAT check is failed.
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
Exisiting tests.
---
build.gradle.kts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/build.gradle.kts b/build.gradle.kts
index 13023bcd8..dbfd8099c 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -492,7 +492,7 @@ tasks.rat {
"ROADMAP.md",
"clients/client-python/.pytest_cache/*",
"clients/client-python/.venv/*",
- "clients/client-python/gravitino.egg-info/*",
+ "clients/client-python/apache_gravitino.egg-info/*",
"clients/client-python/gravitino/utils/exceptions.py",
"clients/client-python/gravitino/utils/http_client.py",
"clients/client-python/tests/unittests/htmlcov/*",