Matt Allen

Results 6 comments of Matt Allen

The behavior we're trying to avoid with that check is someone accidentally leaving the class with no fields at all. If there are inherited fields, I'd think we'd want to...

Let me get this straight. You know that your HTTP clients is unusable with HTTP/2 servers and you choose to blame the users rather than accept a configuration flag to...

You can quite standards all day, it doesn't change the fact that your client can't communicate with some servers, and you're offering no good solution for your users. The reality...

So the issue is that you're calling `write_debug_and_quit`, which in turn calls `sys.exit()`, which is a non-retryable situation. So to prevent that from happening, what you want to do is...

Oh interesting. I wonder if it's related to removing this `sleep(ms_wait / 1000 * (i + 1))` from the beginning of the request function? That would trigger a sleep on...

For anyone else hitting this, you need to specify a specific host in the `CORS` setting to use `CORSCredentials`. See here for details https://stackoverflow.com/a/77152249 It would be nice if a...