Results 454 comments of Dima Tisnek

Looks like it's the keep-alive timeout, I can change the time when hyprecorn drops the connection with `hypercorn --keep-alive N`. Given that HTTP/2 has own ping semantics, I guess hypercorn...

One thing to note is that the code in question does essentially: ```py return await self._aio_session.request(...) ``` While official `aiohttp` documentation appears to recommend: ```py async with session.request(...): return xxx...

re: credential refresh I'm not well-versed in the deployment... Do I understand it right that if we don't use `AWS_PROFILE`, then there's nothing to refresh? As far as I can...

I've poked the instance where container is running: * `security-credentials` are updated every hour * they are valid for 8h30min * process got stuck 40 minutes after latest update, that's...

Edit: `100` was red herring Was: `99` done tasks + `1` stuck task `== 100` which was suspicious.

`100` was a red herring, sorry. It was batching in our code. Original comment edited.

I wonder if something like https://github.com/aio-libs/aiobotocore/pull/724 might fix it... I'll post an update when `0.10.4` is thoroughly tested.

Still getting stuck for me with following versions: * Python 3.8.1 * aiobotocore 0.11.1 * aiodns 2.0.0 * aiohttp 3.6.2 * botocore 1.13.14 * boto3 1.10.14 It's kinda reproducible (not...

> can you try aiohttp 3.3.2, Is there something significant changed in subsequent version, or what?

Re-formatted stack trace from @marcioemiranda ```py Traceback (most recent call last): File "/var/task/orchestrator/lambda_function.py", line 242, in invoke_worker Payload=payload File "/opt/python/aiobotocore/client.py", line 77, in _make_api_call operation_model, request_dict, request_context) File "/opt/python/aiobotocore/client.py", line...