Marco
Marco
I switched to `Pylance` as suggested in https://github.com/microsoft/python-language-server/issues/2007 and this has been solved. Also everything seems to be snappier. I almost saturated my swap partition **twice** with the MS language...
There is no builtin way of doing this within beat. I've been using https://github.com/cameronmaske/celery-once and it works pretty well, although it uses Redis expiring keys so it doesn't actually check...
This is still happening.
I think the point is to make the formatter smarter, not to disable formatting altogether.
How would the proposed solution work with multiple workers connecting to the same backend? For example `worker1` might set a lock, `worker2` might crash, reinitialize and remove all locks on...
Sure, you can pass kwargs but where exactly would the validation logic run and be called? `parse_value`, `serialize`? Also there's no access to the supertype so what if I wanted...
Yes, similarly to how Django validates input in the forms, before calling the various `create`, `update`, etc. I threw together a decorator for pre mutation validation for graphene, I'll see...
@jkimbo so I came up with this PoC and I was hoping you could take a look to maybe integrate it in Graphene (after some refinements): https://github.com/chpmrc/graphene-validator . Let me...
@jkimbo did you have a chance to look at the repo I linked above? Cheers!
@vancouverwill thanks for that example! Does it return the `path` to the invalid field in the error? E.g. if you send an object `{user: {name, email}}` will `path` be `[user,...