You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There was a bug in the library in that we could not both:
* set keepalive_timeout as None
* set force_close to True
Validation was wrong in that it expects `keepalive_timeout` to have to be
one of `float` or `int`, but it should also allow `None` since `aiohttp`
requires `keepalive_timeout` to be `None` if `force_close` is set to
`True`.
Closesaio-libs#932
Describe the bug
Cannot set both
keepalive_timeout
toNone
andforce_close
toTrue
inAioConfig
.This fails:
But then the following also fails because
aiohttp
requireskeepalive_timeout
to beNone
whenforce_close
isTrue
:Checklist
pip check
passes without errorspip freeze
resultspip freeze results
Environment:
Additional context
None.
The text was updated successfully, but these errors were encountered: