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
32691b5b
Commit
32691b5b
authored
Aug 30, 2017
by
attiyaishaque
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
EDUCATOR-1267 Add logs in importing the course.
parent
0a6029f7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
1 deletions
+32
-1
cms/djangoapps/contentstore/views/import_export.py
+32
-1
No files found.
cms/djangoapps/contentstore/views/import_export.py
View file @
32691b5b
...
@@ -8,6 +8,7 @@ import logging
...
@@ -8,6 +8,7 @@ import logging
import
os
import
os
import
re
import
re
import
shutil
import
shutil
import
socket
from
django.conf
import
settings
from
django.conf
import
settings
from
django.contrib.auth.decorators
import
login_required
from
django.contrib.auth.decorators
import
login_required
...
@@ -160,6 +161,16 @@ def _write_chunk(request, courselike_key):
...
@@ -160,6 +161,16 @@ def _write_chunk(request, courselike_key):
# This shouldn't happen, even if different instances are handling
# This shouldn't happen, even if different instances are handling
# the same session, but it's always better to catch errors earlier.
# the same session, but it's always better to catch errors earlier.
if
size
<
int
(
content_range
[
'start'
]):
if
size
<
int
(
content_range
[
'start'
]):
log
.
warning
(
u"Course uploading failed. "
u"course_id: {}, file_path: {}, range: {}, server: {}, session_key: {} "
.
format
(
courselike_key
,
temp_filepath
if
temp_filepath
.
exists
()
else
'EMPTY'
,
content_range
[
'start'
],
socket
.
gethostname
(),
request
.
session
.
session_key
,
)
)
_save_request_status
(
request
,
courselike_string
,
-
1
)
_save_request_status
(
request
,
courselike_string
,
-
1
)
log
.
warning
(
log
.
warning
(
"Reported range
%
s does not match size downloaded so far
%
s"
,
"Reported range
%
s does not match size downloaded so far
%
s"
,
...
@@ -177,7 +188,16 @@ def _write_chunk(request, courselike_key):
...
@@ -177,7 +188,16 @@ def _write_chunk(request, courselike_key):
# nginx sends a 499 error code when the response takes too long.
# nginx sends a 499 error code when the response takes too long.
elif
size
>
int
(
content_range
[
'stop'
])
and
size
==
int
(
content_range
[
'end'
]):
elif
size
>
int
(
content_range
[
'stop'
])
and
size
==
int
(
content_range
[
'end'
]):
return
JsonResponse
({
'ImportStatus'
:
1
})
return
JsonResponse
({
'ImportStatus'
:
1
})
log
.
info
(
u"Uploading course :"
u"course_id: {}, file_path: {}, range: {}, server: {}, session_key: {} "
.
format
(
courselike_key
,
temp_filepath
,
content_range
[
'start'
],
socket
.
gethostname
(),
request
.
session
.
session_key
,
)
)
with
open
(
temp_filepath
,
mode
)
as
temp_file
:
with
open
(
temp_filepath
,
mode
)
as
temp_file
:
for
chunk
in
request
.
FILES
[
'course-data'
]
.
chunks
():
for
chunk
in
request
.
FILES
[
'course-data'
]
.
chunks
():
temp_file
.
write
(
chunk
)
temp_file
.
write
(
chunk
)
...
@@ -214,6 +234,17 @@ def _write_chunk(request, courselike_key):
...
@@ -214,6 +234,17 @@ def _write_chunk(request, courselike_key):
log
.
exception
(
log
.
exception
(
"error importing course"
"error importing course"
)
)
log
.
warning
(
u"Course uploading failed. "
u"course_id: {}, file_path: {}, range: {}, server: {}, session_key: {} "
.
format
(
courselike_key
,
temp_filepath
,
content_range
[
'start'
],
socket
.
gethostname
(),
request
.
session
.
session_key
,
)
)
return
JsonResponse
(
return
JsonResponse
(
{
{
'ErrMsg'
:
str
(
exception
),
'ErrMsg'
:
str
(
exception
),
...
...
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