[GHF] Skip b3aa2de (#76231)

Summary:
Difference between were b5222584e6 and 69e048b090 are reconciled in b3aa2de5be, so the commit must be manually skipped

Pull Request resolved: https://github.com/pytorch/pytorch/pull/76231

Reviewed By: bigfootjon

Differential Revision: D35845975

Pulled By: malfet

fbshipit-source-id: 4e4a2f03a26202bffe2045ac80704b356144164e
(cherry picked from commit dd32c3e33059b28c4727ffbeb40661dd14b3c7dc)
This commit is contained in:
Nikita Shulga
2022-04-22 07:10:00 -07:00
committed by PyTorch MergeBot
parent adc920905a
commit 25d5b63acf

View File

@ -215,7 +215,9 @@ class GitRepo:
# Another HACK: Patch-id is not stable for commits with binary files or for big changes across commits
# I.e. cherry-picking those from one branch into another will change patchid
if "pytorch/pytorch" in self.remote_url():
for excluded_commit in ["8e09e20c1dafcdbdb45c2d1574da68a32e54a3a5", "5f37e5c2a39c3acb776756a17730b865f0953432"]:
for excluded_commit in {"8e09e20c1dafcdbdb45c2d1574da68a32e54a3a5",
"5f37e5c2a39c3acb776756a17730b865f0953432",
"b5222584e6d6990c6585981a936defd1af14c0ba"}:
if excluded_commit in from_commits:
from_commits.remove(excluded_commit)