Jordi Soucheiron

Results 16 comments of Jordi Soucheiron

What if instead of decorators we use a default value? A bit similar to the field factory from dataclass. Ex: ```python3 class Rectangle(BaseModel): width: int length: int area: int =...

Regarding the cache question. I'd go for no caching and use cached_property (from 3.8) if needed be. People in 3.7 would need to handle it manually, but it'd be pretty...

Just here to confirm that we can see this issue happening in python 3.9, 3.10 and 3.11 with aiohttp 3.8.4

Once #7333 is released I can definitely give it a try.

I wish I could provide it but I haven't managed to reproduce this locally yet, just in production after running for a while.

To add some additional context on this that might help untangle the issue: * `SQSService` is long lived * `session = get_session()` will be called multiple times * `get_session()` calls...

If that's the case we should probably document it, specially if it can cause bugs like this one. Missatge de Alexander Mohr ***@***.***> del dia dt., 9 de maig 2023...

The problem is that given that the client is an async context manager there's not nice/elegant way to have a long lived client. You'd need to enter manually and create...

This is the kind of pattern I'd love to see documented. If there are certain ways of using the library that minimize load or are generally best practices given how...

Maybe it'd be worth to add something a bit more extensible. We could add a variable called `SOLUTION_TYPE` it could be an enum with a few values: `REQUIRES_CF_TEARDOWN`, `REQUIRES_RESOURCE_RECREATION`, `IN_PLACE_UPDATE`...