From 7e2ea2c03744c957fec412ccb09e6f285b3d9623 Mon Sep 17 00:00:00 2001 From: Radek Czajka Date: Fri, 27 Jan 2012 17:18:55 +0100 Subject: [PATCH] don't delay touch_tag --- apps/catalogue/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/catalogue/models.py b/apps/catalogue/models.py index 7f20b4e59..091e66148 100644 --- a/apps/catalogue/models.py +++ b/apps/catalogue/models.py @@ -763,7 +763,7 @@ class Book(models.Model): book_descendants += list(child_book.children.all()) for tag in descendants_tags: - touch_tag.delay(tag) + touch_tag(tag) book.save() @@ -1051,7 +1051,7 @@ def _tags_updated_handler(sender, affected_tags, **kwargs): # reset tag global counter # we want Tag.changed_at updated for API to know the tag was touched for tag in affected_tags: - touch_tag.delay(tag) + touch_tag(tag) # if book tags changed, reset book tag counter if isinstance(sender, Book) and \ -- 2.20.1