From bda9b762eafa5181f378287619471c3bff4c6142 Mon Sep 17 00:00:00 2001 From: Pavel Semyonov Date: Thu, 12 Dec 2024 18:02:55 +0700 Subject: [PATCH] Drop enterprise_doc Redirect doc requests from enterprise repos to tarantool/doc. Reason: EE docs are merged into the main doc. --- docbot/settings.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docbot/settings.py b/docbot/settings.py index 7fb4dd4..880754a 100644 --- a/docbot/settings.py +++ b/docbot/settings.py @@ -13,12 +13,12 @@ doc_repo_urls = { 'tarantool/tarantool': f'{api}doc', 'tarantool/vshard': f'{api}doc', - 'tarantool/tarantool-ee': f'{api}enterprise_doc', - 'tarantool/sdk': f'{api}enterprise_doc', + 'tarantool/tarantool-ee': f'{api}doc', + 'tarantool/sdk': f'{api}doc', 'tarantool/tdg': f'{api}tdg-doc', 'tarantool/tdg2': f'{api}tdg-doc', 'tarantool/tt': f'{api}doc', - 'tarantool/tt-ee': f'{api}enterprise_doc', + 'tarantool/tt-ee': f'{api}doc', 'tarantool/grafana-dashboard': f'{api}doc', 'tarantool/metrics': f'{api}doc', }