Skip to content

Commit

Permalink
K8SPXC-1446: use kubectl in wait_for_delete function (#1893)
Browse files Browse the repository at this point in the history
  • Loading branch information
eleo007 authored Dec 3, 2024
1 parent 4c01aab commit 087eda0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e-tests/functions
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ wait_for_delete() {
echo -n "waiting for $res to be deleted"
set +o xtrace
retry=0
until (kubectl_bin get $res || :) 2>&1 | grep NotFound; do
until (kubectl get $res || :) 2>&1 | grep NotFound; do
sleep 1
echo -n .
let retry+=1
Expand Down

0 comments on commit 087eda0

Please sign in to comment.