kdumpctl: fix comment in check_and_wait_network_ready

The time out was increased to 180 seconds in 680c0d3 ("kdumpctl:
distinguish the failed reason of ssh"). Update the comment to reflect
that change.

Signed-off-by: Philipp Rudo <prudo@redhat.com>
Reviewed-by: Tao Liu <ltao@redhat.com>
Reviewed-by: Coiby Xu <coxu@redhat.com>
This commit is contained in:
Philipp Rudo 2022-03-25 15:47:02 +01:00 committed by Coiby Xu
parent 7cd3f232d5
commit 247b3dd297

View File

@ -734,7 +734,7 @@ check_and_wait_network_ready()
cur=$(date +%s)
diff=$((cur - start_time))
# 60s time out
# time out after 180s
if [[ $diff -gt 180 ]]; then
break
fi