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
fd942ffb
Commit
fd942ffb
authored
Sep 23, 2014
by
Adam Palay
Committed by
Zia Fazal
Apr 07, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change ItemNotFoundErrors to log.warning in x_module.py
parent
934b8302
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletions
+9
-1
common/lib/xmodule/xmodule/x_module.py
+9
-1
No files found.
common/lib/xmodule/xmodule/x_module.py
View file @
fd942ffb
...
@@ -336,7 +336,15 @@ class XModuleMixin(XBlockMixin):
...
@@ -336,7 +336,15 @@ class XModuleMixin(XBlockMixin):
child
=
self
.
runtime
.
get_block
(
child_loc
)
child
=
self
.
runtime
.
get_block
(
child_loc
)
child
.
runtime
.
export_fs
=
self
.
runtime
.
export_fs
child
.
runtime
.
export_fs
=
self
.
runtime
.
export_fs
except
ItemNotFoundError
:
except
ItemNotFoundError
:
log
.
exception
(
u'Unable to load item {loc}, skipping'
.
format
(
loc
=
child_loc
))
log
.
warning
(
u'Unable to load item {loc}, skipping'
.
format
(
loc
=
child_loc
))
dog_stats_api
.
increment
(
"xmodule.item_not_found_error"
,
tags
=
[
u"course_id:{}"
.
format
(
child_loc
.
course_key
),
u"block_type:{}"
.
format
(
child_loc
.
block_type
),
u"parent_block_type:{}"
.
format
(
self
.
location
.
block_type
),
]
)
continue
continue
self
.
_child_instances
.
append
(
child
)
self
.
_child_instances
.
append
(
child
)
...
...
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