doc/_ext: claim ceph_releses ext to be parallel read safe

so we can pass `-j auto` to sphinx-build to speed up the build

Signed-off-by: Kefu Chai <kchai@redhat.com>
This commit is contained in:
Kefu Chai 2021-04-14 17:07:23 +08:00
parent c145444b91
commit d867d07890

View File

@ -210,3 +210,7 @@ class CephTimeline(Directive):
def setup(app):
app.add_directive('ceph_releases', CephReleases)
app.add_directive('ceph_timeline', CephTimeline)
return {
'parallel_read_safe': True,
'parallel_write_safe': True
}