From d61bd2961c5117f22d227a910b7a20e65322bb82 Mon Sep 17 00:00:00 2001 From: Cao Xuan Hoang Date: Wed, 8 Aug 2018 14:09:59 +0700 Subject: [PATCH] Adding 'logapi' in apidoc_excluded_paths for sphinx-docs job Currently the job build failed because it requires some reference from neutron master branch. Which is not released along with latest neutron Rocky3. This patch is igrore this path for temporarily and recover after next neutron release. Change-Id: I18bae753466be752ff9de879fc7205f806701ae4 --- doc/source/conf.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/source/conf.py b/doc/source/conf.py index c1521cbc8..b22d0fead 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -61,8 +61,11 @@ todo_include_todos = True # sphinxcontrib.apidoc options apidoc_module_dir = '../../neutron_fwaas' apidoc_output_dir = 'contributor/api' +# TODO(hoangcx): remove 'services/logapi/*' after next neutron release +# (current release is Rocky-3) apidoc_excluded_paths = [ 'db/migration/alembic_migrations/*', + 'services/logapi/*', 'setup.py', 'tests/*', 'tests']