summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorEric Harney <eharney@redhat.com>2018-10-18 16:00:30 -0400
committerEric Harney <eharney@redhat.com>2018-12-14 11:43:56 -0500
commit2505e2a9031f13fbcb1f639ee5f21a2a30f77715 (patch)
tree2730290382c6f22e34ff06d0fd295268b4fb0cbe /doc
parent4cf62cf31f3fcc0d00ce4daa291be6003ab331ed (diff)
downloadpython-cinderclient-2505e2a9031f13fbcb1f639ee5f21a2a30f77715.tar.gz
Fix doc build error
Doc build keeps failing w/ Recursion error: maximum recursion depth exceeded while pickling an object Sphinx recommends bumping up the recursion limit to get around this, and it appears to work. Change-Id: If0a78f9af2e4ddd5fd88c44757642355b3a5bf2e
Diffstat (limited to 'doc')
-rw-r--r--doc/source/conf.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 81acc28..3cfc842 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -16,6 +16,8 @@ import os
import sys
import pbr.version
+sys.setrecursionlimit(4000)
+
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.