Stephen Rice

Results 13 comments of Stephen Rice

Building on @terrazasrj suggestion I did this in `__init__py` of my module which is executed before any existing imports from `facebook_business` ``` from facebook_business import apiconfig apiconfig.ads_api_config['API_VERSION'] = 'v14.0' for...

I think I've got around this by doing the following though I'm not 100% convinced. ``` def fields_included(self, model): if manager := getattr(model, "history", None): excluded_fields = manager.model._history_excluded_fields else: excluded_fields...

Of possibly to change this line: https://github.com/jazzband/django-simple-history/blob/29108a5b94397ba6107e6899db957289c75468c1/simple_history/models.py#L713 to: ``` for field in manager.model.tracked_fields: ```

I believe the stacktrace above on transparent GIFs was caused by a if/elif bug in wagtailimages/models.py causing a second attempt to save the same file. This got fixed some time...

One thing I have noticed is that using a dynamic template is the API only sends the content types you provide in the API call, although the content value itself...

I've seen something like this with npm 10.9.0 when run by docker build. Doesn't occur on the host machine. Doesn't occur with npm 10.8.3. Workaround was to pin npm to...

> @riceyrice please add -ddd to `npm i` and paste log. Maybe this will be reify move too? Could be - it froze for around 25 minutes, with a `reify...

Aha, I was writing up network details in case this is some DNS thing: Docker 4.34.2 (167172) on Windows 11 with WSL2 backend, Tailscale VPN (disconnected). Connected the VPN and...

Yep, there were other commands that won't work. On monkeypatching my way around the `CLIENT LIST` error, I encountered `CROSSSLOT` errors due to [Serverless operating in cluster mode](https://docs.aws.amazon.com/AmazonElastiCache/latest/mem-ug/wwe-troubleshooting.html#wwe-troubleshooting.clienterrors), so given...

> Hi @riceyrice , we're running into the same issues and would love your input. How'd you end up solving this? Did moving away from Elasticache serverless to Elasticache cluster...