Skip to content

Commit 222ced7

Browse files
authored
Merge pull request kubernetes#77642 from mm4tt/chunk_size
Revert kubernetes#77552 now the actual fix kubernetes#77580 got merged
2 parents 1c689c2 + b4a8beb commit 222ced7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cluster/validate-cluster.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ while true; do
104104
# which are important for line counting.
105105
# Use trick from https://unix.stackexchange.com/a/383411 to avoid
106106
# newline truncation.
107-
node=$(kubectl_retry get nodes --chunk-size=0 --no-headers; ret=$?; echo .; exit "$ret") && res="$?" || res="$?"
107+
node=$(kubectl_retry get nodes --no-headers; ret=$?; echo .; exit "$ret") && res="$?" || res="$?"
108108
node="${node%.}"
109109
if [ "${res}" -ne "0" ]; then
110110
if [[ "${attempt}" -gt "${last_run:-$MAX_ATTEMPTS}" ]]; then

0 commit comments

Comments
 (0)