doc: Fix nodetool flush example

`nodetool flush` have a space between *keyspace* and *table* names

See
https://docs.scylladb.com/stable/operating-scylla/nodetool-commands/flush
for the right syntax.

Fixes #11314

Closes #11334
This commit is contained in:
Tzach Livyatan
2022-08-20 17:55:42 +03:00
committed by Nadav Har'El
parent eed65dfc2d
commit 4e413787d2

View File

@@ -34,7 +34,7 @@ Steps:
.. code-block:: sh
nodetool flush <keyspace>.<mytable>;
nodetool flush <keyspace> <mytable>;
4. Run compaction (this will remove big partitions with tombstones from specified table)