ayushtkn commented on PR #423: URL: https://github.com/apache/tez/pull/423#issuecomment-3140928746
Ohh, I remember this Yetus issue. The size of the PR is too big that is why it is failing to apply. If you do locally on your mac ``` curl --fail -H 'Accept: application/vnd.github.v3.patch' --output /private/tmp/yetus-10894.25287/input.patch --location https://api.github.com/repos/apache/tez/pulls/423 ``` This will fail locally as well ``` ayushsaxena@ayushsaxena tez % curl --fail -H 'Accept: application/vnd.github.v3.patch' --output /private/tmp/yetus-10894.25287/input.patch --location https://api.github.com/repos/apache/tez/pulls/423 % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 0 392 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 curl: (56) The requested URL returned error: 406 ``` More details here: https://issues.apache.org/jira/browse/YETUS-719?focusedCommentId=17874835&page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-17874835 Maybe we can hack it here as well, get the result and then revert that hacky commit then merge this PR Can you apply this diff and trigger the build please ``` diff --git a/Jenkinsfile b/Jenkinsfile index 79c2a3e3c..e9d6c4368 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -35,7 +35,7 @@ pipeline { DOCKERFILE = "${SOURCEDIR}/build-tools/docker/Dockerfile" YETUS='yetus' // Branch or tag name. Yetus release tags are 'rel/X.Y.Z' - YETUS_VERSION='rel/0.15.1' + YETUS_VERSION='a7d29a6a72750a0c5c39512f33945e773e69303e' } @@ -52,7 +52,7 @@ pipeline { checkout([ $class: 'GitSCM', branches: [[name: "${env.YETUS_VERSION}"]], - userRemoteConfigs: [[ url: 'https://github.com/apache/yetus']]] + userRemoteConfigs: [[ url: 'https://github.com/ayushtkn/yetus']]] ) } } ``` -- 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: issues-unsubscr...@tez.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org