Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
3a49136f
Commit
3a49136f
authored
Jul 15, 2013
by
Ned Batchelder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Quiet some debug output, get transactions right.
parent
07aad296
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
lms/djangoapps/courseware/management/commands/clean_history.py
+10
-3
No files found.
lms/djangoapps/courseware/management/commands/clean_history.py
View file @
3a49136f
...
@@ -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
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment