Jason Bodily
Jason Bodily
This appears to have something to do with not properly leveraging show_admin_actions
Same concerns here. ``` from django.contrib import admin from app.models import Tags class TagsInline(admin.TabularInline): model = Tags fields = ('created_at', 'updated_at') extra = 0 def has_add_permission(self, request, obj=None): return False...
Even after doing this, navigating the first time doesn't remove the slide-active class from the first slide. This is unexpected functionality.
I see this as a valuable feature. We have a few tasks that can take several minutes. I don't think it appropriate to raise the retry for all tasks in...
Very much interested in this. It's been mentioned this is a 'rare' case. I'm familiar with no other way to authenticate and persist sessions against an API cross domain, as...
As per the documentation, 0 retries is actually infinite. It would make more sense to make -1 as infinite and 0 as literally "don't retry"
I did in our local code (a kind of hack), by calling removeAllListeners() on the socket before stopping it.