messense
messense
aarch64 is only supported in manylinux2014 and later, manylinux2010 only has x86_64 and i686 support.
> Is there a specific conditional compilation [architecture](https://doc.rust-lang.org/reference/conditional-compilation.html?search=#target_arch) we could detect for this ? I don't think there is. The target architecture is x86_64. You'd need to detect QEMU emulation...
Haven't used squid with chrome-prerender before, I am not sure what's wrong. Could you elaborate?
Would you like to send a PR to fix it?
This is a known issue that I don't have time to investigate. [RFC 2557](https://tools.ietf.org/html/rfc2557)
> WARNING prerender.app._render:99 Temporary browser failure: , retry rendering https://www.apple.com in 1s Seems like that prerender can't connect to your headless Chrome instance. What's your Chrome version? How did you...
Might related to #13
Can you try prerender `https://www.apple.com/mac/` ?
The problem is with how we use `layerPainted` event, not `--headless`, I tried prerender `https://www.apple.com/mac/` and it worked. `https://www.apple.com/` has something producing `layerPainted` event constantly causing prerender timeout.
Because in prerender it tries to infer when the page has done rendering. There are several methods: 1. evaluate `window.prerenderReady == true` 2. count finished network requests 3. wait for...