fix(flink): add Apache license header to muttley/README.md#18713
Merged
Conversation
PR apache#18394 added hudi-flink-datasource/hudi-flink/src/main/java/org/apache/hudi/sink/muttley/README.md without an Apache license header, causing apache-rat:check to fail on every new build of master ("Too many files with unapproved license: 1"). Prepend the standard Apache 2.0 HTML-comment license header so RAT passes. Verified locally: cd hudi-flink-datasource/hudi-flink mvn -Pflink1.20 -Dscala-2.12 apache-rat:check -> Rat check: Summary over all files. Unapproved: 0
Contributor
Author
|
@codope @danny0405 — sorry for the breakage. This is a one-line license-header fix (no code change). Master's |
Merged
5 tasks
Collaborator
codope
approved these changes
May 10, 2026
Member
codope
left a comment
There was a problem hiding this comment.
Any idea why this was not caught in CI in the PR? Did we stop running rat checks in premerge CI?
shangxinli
pushed a commit
to shangxinli/hudi
that referenced
this pull request
May 11, 2026
Pick up fix from apache#18713 for muttley/README.md missing Apache license header that was causing apache-rat:check to fail in CI.
dwshmilyss
pushed a commit
to dwshmilyss/hudi
that referenced
this pull request
May 21, 2026
) PR apache#18394 added hudi-flink-datasource/hudi-flink/src/main/java/org/apache/hudi/sink/muttley/README.md without an Apache license header, causing apache-rat:check to fail on every new build of master ("Too many files with unapproved license: 1"). Prepend the standard Apache 2.0 HTML-comment license header so RAT passes. Verified locally: cd hudi-flink-datasource/hudi-flink mvn -Pflink1.20 -Dscala-2.12 apache-rat:check -> Rat check: Summary over all files. Unapproved: 0 Co-authored-by: Xinli Shang <shangxinli@apache.org>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Describe the issue this Pull Request addresses
Master is broken:
apache-rat:checkfails on every new build with:This was introduced in #18394 (merged ~2026-05-10 02:10 UTC) which added the README without the standard Apache license header.
Example failing build: https://github.com/apache/hudi/actions/runs/25632749770/job/75239286191 (from PR #18405)
Summary and Changelog
hudi-flink-datasource/hudi-flink/src/main/java/org/apache/hudi/sink/muttley/README.md. No content changes.Impact
Public API Changes: None.
User-Facing Changes: None — documentation file only, no behavior change.
Performance Impact: None.
Build Impact: Unblocks
apache-rat:checkon every module that runs from the parent reactor (currently red on master since #18394 merged). Restores green CI for all open PRs that need to be rebased / re-triggered after this lands.Verification:
Risk Level
Risk Level: none — documentation header only, no code changes.
Documentation Update
No user-facing documentation changes required. The modified file is an internal package README that already exists in master; this PR only adds the required Apache 2.0 license header so RAT compliance is satisfied.
Contributor's checklist