Merge "Mark sphinx extensions thread safe"

This commit is contained in:
Zuul 2020-05-13 16:19:52 +00:00 committed by Gerrit Code Review
commit 742cdf2dac
3 changed files with 6 additions and 0 deletions

View File

@ -20,3 +20,7 @@ from .paths import * # noqa
def setup(app):
ext.setup(app)
page_context.setup(app)
return {
'parallel_read_safe': True,
'parallel_write_safe': True,
}

View File

@ -445,4 +445,5 @@ def setup(app):
return {
'parallel_read_safe': True,
'parallel_write_safe': True,
}

View File

@ -98,4 +98,5 @@ def setup(app):
app.connect('html-page-context', html_page_context)
return {
'parallel_read_safe': True,
'parallel_write_safe': True,
}