diff --git a/CHANGES.txt b/CHANGES.txt index 6d80b2972e..a2102acc56 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -125,6 +125,7 @@ * Rename DisableFlag class to EnableFlag on guardrails (CASSANDRA-17544) 4.1.2 + * Return snapshots with dots in their name in nodetool listsnapshots (CASSANDRA-18371) * Fix NPE when loading snapshots and data directory is one directory from root (CASSANDRA-18359) * Do not submit hints when hinted_handoff_enabled=false (CASSANDRA-18304) * Fix COPY ... TO STDOUT behavior in cqlsh (CASSANDRA-18353) diff --git a/test/distributed/org/apache/cassandra/distributed/test/SnapshotsTest.java b/test/distributed/org/apache/cassandra/distributed/test/SnapshotsTest.java index ecc44f5bdd..8ba3a90560 100644 --- a/test/distributed/org/apache/cassandra/distributed/test/SnapshotsTest.java +++ b/test/distributed/org/apache/cassandra/distributed/test/SnapshotsTest.java @@ -52,7 +52,8 @@ public class SnapshotsTest extends TestBaseImpl private static Cluster cluster; private final String[] exoticSnapshotNames = new String[] { "snapshot", "snapshots", "backup", "backups", - "Snapshot", "Snapshots", "Backups", "Backup"}; + "Snapshot", "Snapshots", "Backups", "Backup", + "snapshot.with.dots-and-dashes"}; @BeforeClass public static void before() throws IOException