ndimiduk commented on PR #8044: URL: https://github.com/apache/hbase/pull/8044#issuecomment-4403457067
I'm pretty sure what you're seeing is an artifact of how Yetus applies each commit in your PR branch (`git apply --binary -v --stat --apply -p1 input.patch`) against a clean checkout of master. Grepping logs, this looks important: For ReadOnlyController.java, the apply log shows 9 stanzas: - Line 544 of stat: 393 +++++++++ (HBASE-29083 adds the file) - Lines 550, 552, 571, 649, 653, 655, 663, 669: subsequent modifications/re-adds across the feature branch - Line 677: 913 -------------------- (HBASE-29841 deletion stanza, all -, no +) Somehow it's not tracking changes to this file correctly across the entire history. Looks like this is a known issue in Yetus ([YETUS-983](https://issues.apache.org/jira/browse/YETUS-983)) and has been around since 2020. My best recommendation for now is to squish your history a bit and see what comes of it. -- 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]
