Peter Thomassen

Results 203 comments of Peter Thomassen

Yes, I figured :-( I was thinking the same about Celery heartbeat, but as we don't use it now but comes with extra infrastructure that are not used (in particular,...

I fixed the tests, which are broken due to an unrelated problem. (We recently had fixed waiting for Postgres dbapi, but the fix did not apply to one of the...

That's actually pretty straightforward! https://www.django-rest-framework.org/api-guide/schemas/ I'll take a look when I find some time.

We use Django REST framework for our API, which comes with integrated support for generating an OpenAPI specification. However, at the time when I attempted this (the other commits), there...

@rugk I made another attempt with [DRF's schema functionality](https://www.django-rest-framework.org/api-guide/schemas/), and manged to produce some results [with Swagger](https://thomassen.io/tmp/swagger-ui.html) and [with ReDoc](https://thomassen.io/tmp/redoc-json.html). (The schema files themselves are linked in the HTML sources,...

> Could you at least report busg for the issues you've found to that upstream project? I totally understand that you cannot maintain both things, but if they don’t know...

I found some issues at the DRF repository, and opened a few new ones. Related: https://github.com/encode/django-rest-framework/issues/8041 https://github.com/encode/django-rest-framework/issues/7255 https://github.com/encode/django-rest-framework/discussions/7929#discussioncomment-658681 https://github.com/encode/django-rest-framework/issues/8062 https://github.com/encode/django-rest-framework/issues/8063 https://github.com/encode/django-rest-framework/issues/8065 This does not cover all problematic aspects identified above,...

This works [as documented](https://desec.readthedocs.io/en/latest/dyndns/update-api.html#determine-ip-addresses). If you want to keep the other IP address, you can provide it explicitly in another query string parameter (i.e. you can provide both `myipv4` and...

Thank you for your interesting thoughts! Given the specific ideas you have (several of which I support), would you like to contribute these features? (If yes, let's agree on the...

decorate `RRset` class with ```python @pgtrigger.register( pgtrigger.Protect( name='protect_updates', operation=pgtrigger.Update, condition=pgtrigger.Q(old__subname__df=pgtrigger.F('new__subname')) | pgtrigger.Q(old__type__df=pgtrigger.F('new__type')) ) ) ```