-
Notifications
You must be signed in to change notification settings - Fork 516
Open
Description
First of thanks you so much for this great project.
I am facing an issue with latest splash docker image 3.5 as well as 3.4 both. when we try to run it against https://securityfoster.com
it never responds back, even timeout is not triggering, i tried the following lua_script (default ones) within the splash.
function main(splash, args)
local ok, result = splash:with_timeout(function()
-- try commenting out splash:wait(3)
-- splash:wait(3)
assert(splash:go(args.url))
end, 2)
if not ok then
if result == "timeout_over" then
return "Cannot navigate to the url within 2 seconds"
else
return result
end
end
return "Navigated to the url within 2 seconds"
end
and
function main(splash, args)
assert(splash:go(args.url))
assert(splash:wait(0.5))
return {
html = splash:html(),
png = splash:png(),
har = splash:har(),
}
end
with both of the script splash is not responding and hangs, I have to stop and re-run the image.
OS: Ubuntu 20.04.6 LTS
nyzsirt and AbdelrahmanAbounida
Metadata
Metadata
Assignees
Labels
No labels