Mikuláš Poul

Results 29 comments of Mikuláš Poul
trafficstars

So imagine you have this table: ``` from django.db import models from postgres_copy import CopyManager class Customer(models.Model): first_name = models.CharField(max_length=100, db_index=True) last_name = models.CharField(max_length=100, db_index=True) objects = CopyManager() class Meta:...

See https://django-tenant-schemas.readthedocs.io/en/latest/use.html#tenant_context ``` from tenant_schemas.utils import tenant_context for tenant in Tenant.objects.all(): with tenant_context(tenant): # do stuff in each tenant ```

Is there any chance this will get merged? I would like to use it to run an ECS task only when applying, and this should do just that

I think I fixed the basic problems in https://github.com/mikicz/django-devserver/commit/436b7c5bea7e3e1e26c9092ef931d645e1a02ef4, feel free to use...

Btw, if you want to record database queries, I found out about https://github.com/jazzband/silk which is being maintained and is pretty cool!

I've got a Dell XPS 7590 with Fedora 30 / Wayland. Until some time ago icc-brightness worked for me fine and now suddenly it doesn't, can't figure out why. When...

I think this is still happening? I have tasks that get repeatedly executed over and over again and I think it's because of this

I think I was able to solve this well enough in my fork, https://github.com/mikicz/django-devserver/commit/6fe3a6548fa3101e0552150bbccc861d278527c4 - it's working for me right now on django 1.11

I would love it if this went in!