Skip to content

Commit f69ce9f

Browse files
authored
Merge pull request #3484 from nyu-ossd-s18/ash.disable-cache-and-etags
Disable cache when downloading file
2 parents ca3e7a3 + e56060a commit f69ce9f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

notebook/nbconvert/handlers.py

+2
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ def respond_zip(handler, name, output, resources):
4040
zip_filename = os.path.splitext(name)[0] + '.zip'
4141
handler.set_attachment_header(zip_filename)
4242
handler.set_header('Content-Type', 'application/zip')
43+
handler.set_header('Cache-Control', 'no-store, no-cache, must-revalidate, max-age=0')
4344

4445
# Prepare the zip file
4546
buffer = io.BytesIO()
@@ -138,6 +139,7 @@ def get(self, format, path):
138139
self.set_header('Content-Type',
139140
'%s; charset=utf-8' % exporter.output_mimetype)
140141

142+
self.set_header('Cache-Control', 'no-store, no-cache, must-revalidate, max-age=0')
141143
self.finish(output)
142144

143145
class NbconvertPostHandler(IPythonHandler):

0 commit comments

Comments
 (0)