increase timeout when reading data from gathering functions

This commit is contained in:
2024-11-07 10:58:31 +01:00
parent 522861a96e
commit bb4e04818b

View File

@@ -593,7 +593,7 @@ while :; do
(( $? == 0 )) || continue
fi
data=$(timeout 1 cat <&$fd)
data=$(timeout 5 cat <&$fd)
rc=$?
eval "exec $fd>&-"
fdtable[$func]=-1