From 0f8676f04f308c835af64f3d2e813c47fe918948 Mon Sep 17 00:00:00 2001 From: Laura Flores Date: Wed, 25 Sep 2024 15:28:15 -0500 Subject: [PATCH] doc/_ext: accomodate three active releases in the Ceph timeline Avoid this error: ``` /home/jenkins-build/build/workspace/ceph-pr-docs/doc/releases/index.rst:64: ERROR: Error in "ceph_timeline" directive: maximum 3 argument(s) allowed, 4 supplied. ``` Signed-off-by: Laura Flores --- doc/_ext/ceph_releases.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/_ext/ceph_releases.py b/doc/_ext/ceph_releases.py index 94e92ffdd6a..481c2a1b619 100644 --- a/doc/_ext/ceph_releases.py +++ b/doc/_ext/ceph_releases.py @@ -191,7 +191,7 @@ class ReleasesGantt(Directive): class CephTimeline(Directive): has_content = False - required_arguments = 3 + required_arguments = 4 optional_arguments = 0 option_spec = {} -- 2.39.5