From e8dbdd1d3b161ddb3a26977f9e4f57338464ee59 Mon Sep 17 00:00:00 2001 From: Haowei Cai Date: Mon, 25 Oct 2021 12:58:45 -0700 Subject: [PATCH] Remove unnecessary hotfix --- scripts/apply-hotfixes.sh | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/scripts/apply-hotfixes.sh b/scripts/apply-hotfixes.sh index 25a2b8447..596234c8d 100755 --- a/scripts/apply-hotfixes.sh +++ b/scripts/apply-hotfixes.sh @@ -64,17 +64,4 @@ else exit 1 fi; -# Patching commits for Tolerating Null Sources on Projected Volumes -# TODO: remove this patch when we release v20 clients -# Ref: https://github.com/kubernetes-client/python/pull/1497 -git cherry-pick -n ee0e332776d9002bea07d328d49e90ed8c221795 -if [ $? -eq 0 ] -then - echo Succesfully patched changes for Tolerating Null Sources on Projected Volumes -else - echo Failed to patch changes for Tolerating Null Sources on Projected Volumes - git restore --staged . - exit 1 -fi; - git commit -m "Apply hotfixes"