Jonas Dittrich

Results 19 comments of Jonas Dittrich

#14109 would allow us to deploy via helm without changing certificates with each deploy. Note that it does not change anything regarding the non-functional `injectCaFrom` settings

At some point, we see this in our logs (using anthropic): ```py DEBUG LiteLLM Router:router.py:2594 TracebackTraceback (most recent call last): File "/venv/lib/python3.12/site-packages/litellm/llms/anthropic/chat/handler.py", line 384, in acompletion_function response = await async_handler.post(...

> I think you can get [@Kakadus](https://github.com/Kakadus)'s solution into the `pyproject.toml` file as follows: > > [tool.pytest.ini_options] > asyncio_default_fixture_loop_scope = "session" This works around the issue, but it may be...

After digging into the code a bit, I think it is possible to achieve what I want by adapting `serialize_struct` of the `SimpleTypeSerializer` to create a new `SimpleSeq` and writing...

In case anyone works on this: I needed to add `config.linkerd.io/shutdown-grace-period: "30s"`. Otherwise, the linkerd-proxy container errors and the cluster-join job always restarts the pod and does not complete. Seems...

Update: `default` and `cookie` doesn't have a size limitation, while `cipher` does. I'm really wondering how to achieve full 256 bit entropy...

Thanks for taking a look! It seems that I simply forgot about deserialization :) Writing custom (de)serializers always work, although I'd really like to see first party support for all...

~build error with old serde version should be fixed now~ I'm afraid the current approach requires a bump of serde to have your `IntoDeserializer` for `SeqAccessDeserializer` from serde `1.0.214`...

@Mingun implementing IntoDeserializer for ListIter directly allows this to compile with serde