Peter Schutt
Peter Schutt
Other approaches I can think of: ```py class MyDTO(PydanticDTO[...]): default_configs = [ DefaultConfig(name="exclude", value={"id"}, strategy="merge"), ] ``` Or, have the config object itself receive a merge callback that is called...
A few things to think about: - if functions with the same name are declared in different modules and both registered on the app: ```py # a.py @get("/a") def get_handler()...
I'm a heavy user of sentry also, so would like to see this done. I'd have to look at the code more thoroughly to comment, but I'd imagine there will...
msgspec supports yaml via pyYAML. Is this conversation really relevant to this issue? If you want to suggest changing the serialization library we support that should be in its own...
The logging integration gives you _something_, but obviously not ideal as no spans etc. I spoke with one of their engineers at pycon, and he mentioned they might be exposing...
Interesting thing is, I'm consistently getting one or two of these errors running `make test` locally which is using 8 cores. If I run the tests single threaded `pytest` then...
And for good measure - the last run on my local machine on 8 cores had no errors (there was errors 4-5 times in a row which lead me to...
Don't think this should have been closed.
Check out the last couple of posts in [this thread](https://discord.com/channels/919193495116337154/1151927578370768958/threads/1179281714653184122) - on consecutive occasions when I encountered the error locally, the call to the `/not-excluded` route fell right on the...
> So it confirms that timestamps are problem here. New second -> remove old cache objects -> no limit exceeds I will create PR. thanks @kedod!