Since I had a wkhtmltopdf command that sometimes worked and sometimes produced the warning, I watched the web server access log as I ran it.
When all worked well, I'd see requests like this:
99.244.75.4 - - [24/Nov/2014:15:38:21 -0800] "GET /TLCA/static/esf/radioSelect.png HTTP/1.1" 200 524 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/534.34 (KHTML, like Gecko) wkhtmltopdf Safari/534.34
99.244.75.4 - - [24/Nov/2014:15:38:21 -0800] "GET /TLCA/static/esf/radioUnselect.png HTTP/1.1" 200 502 0 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/534.34 (KHTML, like Gecko) wkhtmltopdf Safari/534.34But when the warning was produced, nothing was reported, indicating wkhtmltopdf didn't succeed/make these requests.
I noted that the warning is reported multipageloader.cc:
https://github.com/wkhtmltopdf/wkhtmltopdf/blob/master/src/lib/multipageloader.ccAnd there are two issues already created that seem to reference the warning:
https://github.com/wkhtmltopdf/wkhtmltopdf/issues/1865https://github.com/wkhtmltopdf/wkhtmltopdf/issues/1531I do know that each of the HTML files loads the same images and Google Font, so it could be related to requesting the same resource repeatedly.
The warning is interesting, too, in that it indicates something took took too long, but the error appears right away.
Lastly, when I ran it a few more times, I got it so that the warning appeared twice AND it exited with an error:
Loading pages (1/6)
Warning: Received createRequest signal on a disposed ResourceObject's NetworkAccessManager. This migth be an indication of an iframe taking to long to load.
Counting pages (2/6)
Warning: Received createRequest signal on a disposed ResourceObject's NetworkAccessManager. This migth be an indication of an iframe taking to long to load.
Resolving links (4/6)
Loading headers and footers (5/6)
Printing pages (6/6)
Done