Illia Volochii
Illia Volochii
@pennersr could you please take a look at this pull request?
#3053 fixes this problem too. Isn't `verified_email` renamed to `email_verified` too?
> It seems to be. For 'id', I'm not sure why the same thing has different names. The newer names are compliant with [the OpenID Connect Core 1.0 specification](https://openid.net/specs/openid-connect-core-1_0.html). >...
I've faced with the problem too while I was uploading 1000 objects to S3 with code similar to this one: ```python session = aiobotocore.get_session(loop=event_loop) async with session.create_client('s3') as s3_client: awaitables...
> In case it helps anyone, we ran into this issue as well recently and were able to work around it with an asyncio `Semaphore` to ensure we never attempt...
@la4de thanks for taking a look at this. I like the third option the most.
> re version bump, hiredis 1.0.0 has an extant cve, [GHSA-hfm9-39pp-55p2](https://github.com/redis/hiredis/security/advisories/GHSA-hfm9-39pp-55p2) Please take a look at https://github.com/redis/hiredis-py/issues/118#issuecomment-961154751 regarding the vulnerability. Also, hiredis-py has been sticking to release versions of hiredis....
CVE-2021-32765 is related to [a fix](https://github.com/redis/hiredis/compare/v1.0.0..v1.0.2#diff-b61215f4090069fa2ec48b946a1f19df25f63b1eb9e35d5bf71bd9128ae14498) of a `createArrayObject` function. hiredis-py defines [its own version](https://github.com/redis/hiredis-py/blob/d4d701a06560ce76a4eaba3ac309ff70e37b3190/src/reader.c#L158-L171) of the function. So the CVE and the fix should not touch hiredis-py, I am...
Bignum is not supported by the latest [hiredis](https://github.com/redis/hiredis) release (1.0.2) that is vendored by hiredis-py currently, it is supported by its master branch though.
@tiran interesting, thanks for letting me know. Do you know if `SSL_write_ex` is buggy?