Andrew Pashkin
Andrew Pashkin
Another issue with GFK's is that you cant just do `autofixture.creante_one(SomethingWithGFK, field_values={'content_object': some_object})` `content_type` will be set to random `ContentType` and `object_id` to random value, so `content_object` will refer to...
I think theres simpler solution exists, without monkeypatching etc. What I dont understand is the `Link` class - how it works? I think it must be used for handling nested...
I think that `Link` must not know anything about nested relations and represent and generalize only one relation, with a parameters such as one/many, taget content-type, target object-id (i think...
Do you have any ideas bout how it should be refactored?
@hstadler, I'm not able to reproduce the race-condition. Could you please provide a more complete example?
Nevermind. @hstadler, race-condition in your case if easily fixable by changing `nested = fields.Nested(TestNestSchema())` to `nested = fields.Nested(TestNestSchema)`.
Sorry, my bad, it's already implemented: https://github.com/scottwinkler/terraform-provider-shell/blob/b477c4ae84984c072dc04cafaf7f1ad15a76f157/shell/utility.go#L43 It's not documented though.
@asvetlov, couple of concrete questions: 1. Is ability to index by SQLAlchemy columns really needed? Can it be dropped? 2. Can lazy processing of row values with processors be replaced...
> Also, @AndreiPashkin, please sign the [CLA](https://www.elastic.co/contributor-agreement) when you get a chance. Hmm, but I've signed it, here is the PDF: https://www.dropbox.com/s/oufsg1mc17hlqvy/Please_DocuSign_Individual_Contributor_Licen%20%281%29.pdf?dl=0 Why doesn't the check turn green? I'm also...
Let me actually write a test.