From 891e65e251d102d2664f84d22734b95235a7cb16 Mon Sep 17 00:00:00 2001 From: Jackson Fleming Date: Mon, 15 Jul 2024 14:47:02 +0200 Subject: [PATCH] Fix rendering issues in cassandra.yaml for gen-asciidoc target patch by Jackson Fleming; reviewed by Stefan Miklosovic and Brandon Williams for CASSANDRA-19767 --- doc/scripts/convert_yaml_to_adoc.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/scripts/convert_yaml_to_adoc.py b/doc/scripts/convert_yaml_to_adoc.py index 5eff522a00..3b03856986 100644 --- a/doc/scripts/convert_yaml_to_adoc.py +++ b/doc/scripts/convert_yaml_to_adoc.py @@ -50,7 +50,8 @@ COMPLEX_OPTIONS = ( 'server_encryption_options', 'client_encryption_options', 'transparent_data_encryption_options', - 'hinted_handoff_disabled_datacenters' + 'hinted_handoff_disabled_datacenters', + 'startup_checks' ) def convert(yaml_file, dest_file):