Eric de Ruiter
Eric de Ruiter
Nice! I was trying to find some time to implement this myself. Regarding the url: I think it still has to change; #10988 still refers to the personal access token...
Downgrading to file-loader to ^2.0.0 (which is the version laravel mix depends on) seems to "fix"/prevent the problem as well.
Currently the example config contains the following comments for the ssl mode options ``` # SSL mode options: # * disable - no SSL # * require - Always SSL...
Hmm, yeah the helium packet routers basically impersonate each gateway. I think it uses unique port numbers for each gateway so it can identify which gateway the packets are destined...
:+1: :100: agree You can expect a PR from me/a colleague of mine to add `gatewayCleanupDuration` to the configuration in the next couple of days. For the `chirpstack-helium-bridge`: helium already...
https://github.com/unclecode/crawl4ai/blob/99fa2d09082b0ff561a033702e3dd194cf93271e/crawl4ai/async_crawler_strategy.py#L1356 Changing this code to: ```python if 'net::ERR_ABORTED' in str(e): response = None else: raise RuntimeError(f"Failed on navigating ACS-GOTO:\n{str(e)}") ``` Fixes the issue, I can provide a PR if needed...
Easy workaround is adding your own js_code to the CrawlerRunConfig for example: ```python js_code=""" document.body.scrollIntoView(false) const elements = document.querySelectorAll("*"); elements.forEach((elem) => { const style = window.getComputedStyle(elem); if ((style.position === "fixed"...
Unfortunately I was not able to test this locally as the test keep failing with a stack overflow error I have no clue as to what causes this since the...
failed :-( the good thing it seems to be reproducible :-| Another issue is that currently the database selection fails if you use another database number than 0 as it...
@brocaar It seems that for some reason my changes increased the used stack space slightly .. just to push it over the limit for this test Debugging with gdb seems...