summaryrefslogtreecommitdiffstats
path: root/mirrors
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2013-11-06 21:17:27 -0600
committerDan McGee <dan@archlinux.org>2013-11-06 21:17:27 -0600
commitee6002c911952ddc8cfd07fded3de2c9b0193dc6 (patch)
tree09e1d0d8e1aba35289d62b95b47b318ebd8a1527 /mirrors
parent86f9d6788e22376560ca1a56e86c8f679b832907 (diff)
downloadarchweb-ee6002c911952ddc8cfd07fded3de2c9b0193dc6.tar.gz
archweb-ee6002c911952ddc8cfd07fded3de2c9b0193dc6.zip
Django 1.6 upgrade, deprecation cleanup
PendingDeprecationWarning: commit_on_success is deprecated in favor of atomic. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'mirrors')
-rw-r--r--mirrors/management/commands/mirrorcheck.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mirrors/management/commands/mirrorcheck.py b/mirrors/management/commands/mirrorcheck.py
index 3f026c36..e48aa42e 100644
--- a/mirrors/management/commands/mirrorcheck.py
+++ b/mirrors/management/commands/mirrorcheck.py
@@ -241,7 +241,7 @@ class MirrorCheckPool(object):
thread.daemon = True
self.threads.append(thread)
- @transaction.commit_on_success
+ @transaction.atomic
def run(self):
logger.debug("starting threads")
for thread in self.threads: