Wojtek Mach

Results 382 comments of Wojtek Mach

This is very arbitrary but I'd like to keep Req.Steps to just have steps functions as it's already pretty big module. The downside is we can't have this function which...

@andreyvolokitin can you share how you are using retry? You can set just the :retry_delay option to 0 in tests.

@andreyvolokitin would returning `{:retry, :safe_transient}` like mentioned in https://github.com/wojtekmach/req/issues/371#issuecomment-2161436668 work for you?

This is a really nice idea! We cannot remove README.md though as it's rendered on GitHub which is important to me. How about we make any necessary changes to README.md...

I was unsure whether README.livemd is considered _the_ README, i.e. rendered when going to project page, and it sure does. So I think this is viable, I'll think about for...

Thanks for bringing this up. I'm curious about more use cases around this. If it's mostly around auth, I was thinking about something like this for a while anyway: ```elixir...

The difference would be every time we make a request (eg retry) we’d call a function to grab the auth as opposed to using the same value. FWIW we can...

Yes, this is a known issue and in this particular case it is definitely undesirable. See https://github.com/wojtekmach/req/pull/255. I don't yet know how to address it but I hope to address...

Thank you for the report. It's this: ```elixir Req.get!( "https://self-signed.badssl.com", connect_options: [transport_opts: [verify: :verify_none]] ) ``` The place to document this would be `run_finch` step. We have a few usage...