You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@pchris7489
it could be possible to customize the timeout using an env variable. Will see what I can do.
Thanks for taking the time to read the code and suggest a fix.
Hello,
In the functions
parse_ns_from_xpath
andprint_response
The part
while read -r -u 3 -t 5 xline
, the timeout is to low. If there is an antivirus or a slow computer, it will timeout everytime.It is should possible to customise the timeout, for example :
local timelimit=30 ; [ -n "$timelimit" ] && timelimit=$1; while read -r -u 3 -t $timelimit xline
Where timelimit would be an argument
The text was updated successfully, but these errors were encountered: