Matthias Endler

Results 766 comments of Matthias Endler

Also see: - https://github.com/lycheeverse/lychee/issues/36 - https://github.com/james7132/Hourai/blob/4a4b343f237f726ae1d2e2943e0bed58406f2cf6/logger/hourai-feeds/src/reddit/rate_limiter.rs

> Could you not just add a global cache of sites visited and use just a mutex lock on this? Oh yeah, [we do](https://github.com/lycheeverse/lychee/blob/master/lychee-bin/src/cache.rs). The overhead is indeed minimal, that...

@kemingy, [this PR](https://github.com/lycheeverse/lychee/pull/1844) could be relevant to you as well. For example, you might get rid of the `max-concurrency` setting in https://github.com/PyO3/pyo3/pull/5230. It should "just work." Can you test if...

Cool! Did you try to change `"--accept=200,403,429",` to `"--accept=200,403",`? I think `429` should not occur that often and if it does, the solution (going forward) should be to change the...

> Tried without 429: https://github.com/kemingy/pyo3/actions/runs/17610392432/job/50030830837?pr=1 Cool! Seems to work. Thanks for testing. > 🔍 466 Total (in 11s) ✅ 466 OK 🚫 0 Errors > 🔍 92966 Total (in 1m...

Note to self: I need to add support for `redirect_history`. I see two options: 1. each host gets its own redirect history, and we'll merge it at the end 2....

The question is what will happen with existing workflows that might have a manual cache setup. I think the behavior depends a bit on the setup: - If the cache...

Fair point. I think we could wait a bit before we merge this. People interested could already use it (and remove the existing cache if any): ```yaml - name: Link...

Maybe another case of https://github.com/lycheeverse/lychee-action/issues/289?

To be on the safe side, you can also use the commit sha: ``` lycheeverse/lychee-action@e203314714efe5700a013ace5248a697313082b2 ``` This won't change.