Merge branch 'cassandra-4.1' into trunk

This commit is contained in:
Stefan Miklosovic 2023-03-28 19:02:50 +02:00
commit 6a5f84d0f4
No known key found for this signature in database
GPG Key ID: 32F35CB2F546D93E
2 changed files with 3 additions and 1 deletions

View File

@ -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)

View File

@ -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