Justin Louie
Justin Louie
There's in the code that is changing the data model in this PR, purely how the calculation of `accounting_transfer_to` is performed. So the code is fully backwards compatible. Without the...
@PetrDlouhy done!
@aholtheuerl The way we do it is a join model. Your question, more generically, is about polymorphism - how do I foreign-key relate multiple different models to the same model?...
Is there a specific reason you must go through the "front door"? If you absolutely need to, I would recommend: `SQS -> Special Lambda Worker -> requests.get(...)`
Similarly, I have ```django {{ item.label }} ``` gets auto formatted to: ```django {{ item.label }} ```
I'm facing the same problem even with v2.8 flashed in. How did this compare to just increasing `KeyUpDelay` / `builder_keyup_delay`? It seems like that's the original mechanism designed to ignore...
Great, I'll give it a go first instead of trying the KeyUpDelay wack-a-mole.
> To reduce the time also for the first call I was forced to call the list topic right after the initialization of the Boto client This is cold start...
You can prevent the migrations from being installed by: https://docs.djangoproject.com/en/dev/ref/settings/#migration-modules ```python MIGRATION_MODULES = { "invitations": None, } ``` But the problem is it screws up `pytest` because it's always trying...
As of early 2022, AWS Lambda can now run custom containers which means no more messing with layers! Here's our working `Dockerfile` that is deployed in Lambda to help us...