[config-ref] Add parallel_read_safe to ext.remote

To normally work on a multi processor machine.

If this flag is not set, the below error occurs with sphinx-build:

  Warning, treated as error:
  WARNING: the ext.remote extension does not declare if it is safe
  for parallel reading, assuming it isn't -
  please ask the extension author to check and make it explicit

Change-Id: I306c8b8db27a930e860c669b32d97c3a0fbbc32f
This commit is contained in:
KATO Tomoyuki 2015-11-26 19:43:19 +09:00
parent 950ab63217
commit cc67189f83

View File

@ -30,3 +30,4 @@ class RemoteCodeBlock(code.CodeBlock):
def setup(app):
app.add_directive('remote-code-block', RemoteCodeBlock)
return {'parallel_read_safe': True}