Bartosz Stasiak

Results 4 comments of Bartosz Stasiak

What is the status of this proposal?

Looks similar to https://github.com/newrelic/newrelic-python-agent/issues/1363

FYI This change is now causing issue in my setup after upgrade from 0.2.8 to 0.2.9 We are getting an error that ``` /usr/local/lib/python3.12/site-packages/django/db/models/query.py:658: in create obj.save(force_insert=True, using=self.db) ../../common/model_mixins.py:14: in...

It works if I change the setup to the one that @a-p-f was using. ``` @computed( models.ForeignKey(Foo, models.CASCADE, related_name="+"), depends=[("self", ["foo1"])], ) def foo2(self): return self.foo1 ``` but I need...