diff --git a/CHANGES.txt b/CHANGES.txt index 278b93387d..0de34d2bf4 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -180,6 +180,7 @@ Merged from 4.0: * Partial compaction can resurrect deleted data (CASSANDRA-18507) Merged from 3.11: Merged from 3.0: + * Fix CQLSH online help topic link (CASSANDRA-17534) * Remove unused suppressions (CASSANDRA-18724) diff --git a/pylib/cqlshlib/cqlshmain.py b/pylib/cqlshlib/cqlshmain.py index 7f15b13bb1..df59c4717f 100755 --- a/pylib/cqlshlib/cqlshmain.py +++ b/pylib/cqlshlib/cqlshmain.py @@ -2224,7 +2224,7 @@ def setup_cqlruleset(cqlmodule): def setup_docspath(path): global CASSANDRA_CQL_HTML - CASSANDRA_CQL_HTML_FALLBACK = 'https://cassandra.apache.org/doc/latest/cql/index.html' + CASSANDRA_CQL_HTML_FALLBACK = 'https://cassandra.apache.org/doc/latest/cassandra/cql/cql_singlefile.html' # # default location of local CQL.html if os.path.exists(path + '/doc/cql3/CQL.html'):