Ondra Urban

Results 108 comments of Ondra Urban

> Btw are we sure its a good idea to disable the validation for node_env=prod? This will have effect on the scrapers too, right? Those are developed directly on platform,...

Btw, the times are for one validation? Ouch, that's slow. Even for the fastest one 😅

Yeah, I was not complaining about the speed of the library 😇 More making a further argument that we should probably turn off the validations in production.

I see you're using the Chrome Dockerfile. Firefox is not installed in that one. You need to use the Firefox one. ```Dockerfile FROM apify/actor-node-playwright-chrome:16 ``` ⬇️ ```Dockerfile FROM apify/actor-node-playwright-firefox:16 ```...

Yeah, an explicit check would be best. Either somehow check if the browser is installed in its expected location or via the env var.

It seems that some functions are reported as methods and some as properties? ![CleanShot 2022-08-25 at 14 48 25](https://user-images.githubusercontent.com/23726914/186668999-83e2b67d-af87-45e3-82e4-32baa9c4c8e8.png)

Thanks for the feature suggestion @damianr13 @B4nan we should do this. I literally had the same idea 1 hour ago when playing with the router middlewares. I even think we...

@sbrow you could use https://www.npmjs.com/package/@apify/storage-local It uses SQLite for request queue so you can then use any SQLite GUI application to inspect or manipulate the requests. You can inject it...

Crawlee does not understand failed or successful requests on the queue level. It knows only pending or handled requests. A request that fails by exhausting all retries is also marked...