Skip to content

Commit 1b00746

Browse files
committed
This is a potential fix to issue jupyter#4669. The fix simply catches the
recusrive symlink error and moves on. It is possibble that the try/except belongs in the utils but I wanted to limit the scope.
1 parent 6174498 commit 1b00746

File tree

2 files changed

+32
-6
lines changed

2 files changed

+32
-6
lines changed

notebook/services/contents/filemanager.py

+12-6
Original file line numberDiff line numberDiff line change
@@ -334,12 +334,18 @@ def _dir_model(self, path, content=True):
334334
self.log.debug("%s not a regular file", os_path)
335335
continue
336336

337-
if self.should_list(name):
338-
if self.allow_hidden or not is_file_hidden(os_path, stat_res=st):
339-
contents.append(
340-
self.get(path='%s/%s' % (path, name), content=False)
341-
)
342-
337+
try:
338+
if self.should_list(name):
339+
if self.allow_hidden or not is_file_hidden(os_path, stat_res=st):
340+
contents.append(
341+
self.get(path='%s/%s' % (path, name), content=False)
342+
)
343+
except OSError as e:
344+
# Ignore recursive links and move on
345+
if e.errno==62:
346+
continue
347+
else:
348+
raise e
343349
model['format'] = 'json'
344350

345351
return model

notebook/services/contents/tests/test_manager.py

+20
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,26 @@ def test_bad_symlink(self):
129129
# broken symlinks should still be shown in the contents manager
130130
self.assertTrue('bad symlink' in contents)
131131

132+
@dec.skipif(sys.platform == 'win32' and sys.version_info[0] < 3)
133+
def test_recursive_symlink(self):
134+
with TemporaryDirectory() as td:
135+
cm = FileContentsManager(root_dir=td)
136+
path = 'test recursive symlink'
137+
_make_dir(cm, path)
138+
os_path = cm._get_os_path(path)
139+
os.symlink("recursive", os.path.join(os_path, "recursive"))
140+
file_model = cm.new_untitled(path=path, ext='.txt')
141+
142+
model = cm.get(path)
143+
144+
contents = {
145+
content['name']: content for content in model['content']
146+
}
147+
self.assertTrue('untitled.txt' in contents)
148+
self.assertEqual(contents['untitled.txt'], file_model)
149+
# recusrive symlinks should not be shown in the contents manager
150+
self.assertFalse('recusrive' in contents)
151+
132152
@dec.skipif(sys.platform == 'win32' and sys.version_info[0] < 3)
133153
def test_good_symlink(self):
134154
with TemporaryDirectory() as td:

0 commit comments

Comments
 (0)