mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-4.1' into trunk
This commit is contained in:
commit
6a5f84d0f4
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue