Commit 3a49136f by Ned Batchelder

Quiet some debug output, get transactions right.

parent 07aad296
...@@ -10,7 +10,8 @@ This command that does that. ...@@ -10,7 +10,8 @@ This command that does that.
import datetime import datetime
import json import json
from optparse import make_option import logging
import optparse
import traceback import traceback
from django.core.management.base import NoArgsCommand from django.core.management.base import NoArgsCommand
...@@ -23,7 +24,7 @@ class Command(NoArgsCommand): ...@@ -23,7 +24,7 @@ class Command(NoArgsCommand):
help = "Deletes unneeded rows from the StudentModuleHistory table." help = "Deletes unneeded rows from the StudentModuleHistory table."
option_list = NoArgsCommand.option_list + ( option_list = NoArgsCommand.option_list + (
make_option( optparse.make_option(
'--dry-run', '--dry-run',
action='store_true', action='store_true',
default=False, default=False,
...@@ -32,6 +33,9 @@ class Command(NoArgsCommand): ...@@ -32,6 +33,9 @@ class Command(NoArgsCommand):
) )
def handle_noargs(self, **options): def handle_noargs(self, **options):
# We don't want to see the SQL output from the db layer.
logging.getLogger("").setLevel(logging.INFO)
smhc = StudentModuleHistoryCleaner( smhc = StudentModuleHistoryCleaner(
dry_run=options["dry_run"], dry_run=options["dry_run"],
) )
...@@ -55,6 +59,8 @@ class StudentModuleHistoryCleaner(object): ...@@ -55,6 +59,8 @@ class StudentModuleHistoryCleaner(object):
batch_size = batch_size or self.BATCH_SIZE batch_size = batch_size or self.BATCH_SIZE
connection.enter_transaction_management()
self.last_student_module_id = self.get_last_student_module_id() self.last_student_module_id = self.get_last_student_module_id()
self.load_state() self.load_state()
...@@ -65,7 +71,8 @@ class StudentModuleHistoryCleaner(object): ...@@ -65,7 +71,8 @@ class StudentModuleHistoryCleaner(object):
except Exception: # pylint: disable=W0703 except Exception: # pylint: disable=W0703
trace = traceback.format_exc() trace = traceback.format_exc()
self.say("Couldn't clean student_module_id {}:\n{}".format(smid, trace)) self.say("Couldn't clean student_module_id {}:\n{}".format(smid, trace))
self.commit() if not self.dry_run:
self.commit()
self.save_state() self.save_state()
def say(self, message): def say(self, message):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment