Cristian M
Cristian M
Just to put my two cents here: I've been playing around with the `PUDB_TTY` behavior and I've found this to be the simplest PoC to put it to work: `pudb-client`...
Hi @inducer, I'm glad you find interesting this approach :) I've been thinking about how to improve this process, and I've [uploaded](https://gist.github.com/crimoniv/0e3622f9d265f0e5459e747233b73b90) a more refined PoC. It uses temporary Unix...
I've managed to resolve the issue either by setting `SECURE_CROSS_ORIGIN_OPENER_POLICY = "unsafe-none"` or by completely disabling `django.middleware.security.SecurityMiddleware`. Although [a fix](https://github.com/tfranzel/drf-spectacular/pull/1142) was introduced to set `unsafe-none` in the Swagger-UI view, it...
Hey! I've hit the same warning, leaving my two cents on this: Django's documentation on [`Meta` inheritance](https://docs.djangoproject.com/en/5.2/topics/db/models/#meta-inheritance), mentions two approaches: - Skip `Meta` (re)declaration > _"... it sets `abstract=False`. This...
Hi there! We've also hit this issue in our CI environment. In our case, neither rolling back to `v6.16.0` (or earlier) nor setting `DOCKER_BUILD_EXPORT_LEGACY: true` prevented the hang during the...
> [@crimoniv](https://github.com/crimoniv) Thanks for your feedback! So it hangs with new export implementation and old one iiuc? Is your repo public to look at the workflow run? Yes, in our...
> Could you show the builder information in "Setup Buildx" step similar to https://github.com/docker/setup-buildx-action/actions/runs/16825415692/job/47660615387#step:4:149 if you don't mind? Sure! Here you have: Setup Buildx logs ```shell Run docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 with: driver:...
Oof you hit the nail on the head!! It was exactly that, the outdated `buildx` version 🤦♂️ After pointing to `v0.26.1` -and removing any env variable-, everything is running smoothly....