8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f815f97 commit 57254cdCopy full SHA for 57254cd
doc_tasks/tasks.py
@@ -93,6 +93,10 @@ def update_one_page(page):
93
def full_update_and_commit():
94
processes = OrderedDict()
95
processes['tx_pull'] = tx_pull(page=None)
96
- processes['sphinx_build_html'] = sphinx_build_html(rebuild_all=True)
+ # FIXME: set rebuild_all=False to shorten build time
97
+ # rebuild_all will take too long time
98
+ # causing the task times out and respawn for many times
99
+ # additionally make update_one_page uncached (unpickled)
100
+ processes['sphinx_build_html'] = sphinx_build_html(rebuild_all=False)
101
processes.update(git_add_commit_push())
102
return processes
0 commit comments