Skip to content

Commit f2d7eed

Browse files
authored
Merge pull request kubernetes#72188 from mborsz/logs
Fix detect_node_failures for gke
2 parents 27edd29 + 2aee491 commit f2d7eed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cluster/log-dump/log-dump.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ function detect_node_failures() {
435435
fi
436436

437437
detect-node-names
438-
if [ -z "$INSTANCE_GROUPS" ]; then
438+
if [ -z "${INSTANCE_GROUPS:-}" ]; then
439439
return
440440
fi
441441
for group in "${INSTANCE_GROUPS[@]}"; do

0 commit comments

Comments
 (0)