From cc67189f83c7ff82b8fd3fd5b004921e2d6a6c72 Mon Sep 17 00:00:00 2001 From: KATO Tomoyuki Date: Thu, 26 Nov 2015 19:43:19 +0900 Subject: [PATCH] [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 --- doc/config-ref-rst/source/ext/remote.py | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/config-ref-rst/source/ext/remote.py b/doc/config-ref-rst/source/ext/remote.py index 9331710053..5ff9f546ea 100644 --- a/doc/config-ref-rst/source/ext/remote.py +++ b/doc/config-ref-rst/source/ext/remote.py @@ -30,3 +30,4 @@ class RemoteCodeBlock(code.CodeBlock): def setup(app): app.add_directive('remote-code-block', RemoteCodeBlock) + return {'parallel_read_safe': True}