diff --git a/CHANGES.txt b/CHANGES.txt index 0f33ba0e2e..8d4631974a 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -6,6 +6,7 @@ Merged from 4.0: * Migrate Python optparse to argparse (CASSANDRA-17914) Merged from 3.11: Merged from 3.0: + * Fix CQLSH online help topic link (CASSANDRA-17534) * Remove unused suppressions (CASSANDRA-18724) diff --git a/bin/cqlsh.py b/bin/cqlsh.py index 416895ff2a..0a656c2d32 100755 --- a/bin/cqlsh.py +++ b/bin/cqlsh.py @@ -62,7 +62,7 @@ except ImportError: CQL_LIB_PREFIX = 'cassandra-driver-internal-only-' CASSANDRA_PATH = os.path.join(os.path.dirname(os.path.realpath(__file__)), '..') -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(CASSANDRA_PATH + '/doc/cql3/CQL.html'):