Daniel Gellert
Daniel Gellert
For now a workaround is to overwrite the _create method of my factory so it sets the attribute like: ``` @classmethod def _create(cls, model_class, *args, **kwargs): obj = super(ArticleFactory, cls)._create(model_class,...
Hi, could it be that the callback is called once you call yield in your loop? similar to this issue? https://github.com/faust-streaming/faust/issues/247#issuecomment-1011159569
Hi, is it possible that in your agents you need yield something at some point, so that the stream will release the for loop cycle and its memory? Try yield...
Do you use liveness and readiness probes by k8s? I would rather avoid using sys.exit but check the db on the health endpoint for liveness probe. In that case k8s...
Or is the Idea that we should use something like this: from typing import Any, Optional from faust.models import FieldDescriptor class UUIDField(FieldDescriptor[UUID]): def prepare_value(self, value: Any, *, coerce: bool =...
It might be worth to check if External Secrets Operator can handle the same task. You can define a ClusterSecretStore with a k8s source. might be possible to define the...
Any idea on this @elprans ? Occurs for me as well lately with asyncpg 0.29.0 and python 3.11.x. Also using uvloop does not fix this as suggested above. ``` Traceback...
@tvoinarovskyi do you have any new insights here? Sorry kinda old issue but seems relevant to date.
I am on Ubuntu 16.10 and vagrant 1.8.5 with notify-forwarder version 0.5.0 and I am still getting this. Is there a problem with multiple synced folder? Here is a my...