-
Notifications
You must be signed in to change notification settings - Fork 10.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Don't traverse all pages to get a single page. #3848
Conversation
/botio test |
From: Bot.io (Windows)ReceivedCommand cmd_test from @brendandahl received. Current queue size: 0 Live output at: http://107.22.172.223:8877/5f6ec59404e36cb/output.txt |
From: Bot.io (Linux)ReceivedCommand cmd_test from @brendandahl received. Current queue size: 0 Live output at: http://107.21.233.14:8877/117af7a688721bf/output.txt |
From: Bot.io (Linux)SuccessFull output at http://107.21.233.14:8877/117af7a688721bf/output.txt Total script time: 23.91 mins
|
From: Bot.io (Windows)FailedFull output at http://107.22.172.223:8877/5f6ec59404e36cb/output.txt Total script time: 35.02 mins
Image differences available at: http://107.22.172.223:8877/5f6ec59404e36cb/reftest-analyzer.xhtml#web=eq.log |
/botio-windows test |
From: Bot.io (Windows)ReceivedCommand cmd_test from @brendandahl received. Current queue size: 0 Live output at: http://107.22.172.223:8877/2412bf7261ff534/output.txt |
From: Bot.io (Windows)FailedFull output at http://107.22.172.223:8877/2412bf7261ff534/output.txt Total script time: 35.23 mins
Image differences available at: http://107.22.172.223:8877/2412bf7261ff534/reftest-analyzer.xhtml#web=eq.log |
http://www.unicode.org/L2/L2006/06334-reph-telugu-gurmukhi.pdf has error
|
this.pagePromises[pageIndex].resolve(page); | ||
getPageDict: function Catalog_getPageDict(pageIndex, promise, nodesToVisit, | ||
currentPageIndex) { | ||
if (!promise) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you can create closure here on promise, nodesToVisit, and currentPageIndex instead of passing them as parameters below -- might be easier to read the code
@brendandahl It appears that you forgot to include the link to the test file. |
/botio test |
From: Bot.io (Linux)ReceivedCommand cmd_test from @brendandahl received. Current queue size: 0 Live output at: http://107.21.233.14:8877/8220e2bde229aa2/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_test from @brendandahl received. Current queue size: 0 Live output at: http://107.22.172.223:8877/5e4f28c375b8944/output.txt |
From: Bot.io (Linux)SuccessFull output at http://107.21.233.14:8877/8220e2bde229aa2/output.txt Total script time: 24.20 mins
|
From: Bot.io (Windows)FailedFull output at http://107.22.172.223:8877/5e4f28c375b8944/output.txt Total script time: 36.61 mins
Image differences available at: http://107.22.172.223:8877/5e4f28c375b8944/reftest-analyzer.xhtml#web=eq.log |
Don't traverse all pages to get a single page.
Fix printing regression from #3848.
Fixes #3811