summaryrefslogtreecommitdiffstats
path: root/nixos
diff options
context:
space:
mode:
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/cassandra.nix8
1 files changed, 1 insertions, 7 deletions
diff --git a/nixos/tests/cassandra.nix b/nixos/tests/cassandra.nix
index a5925e234c4d..6779a0172dbd 100644
--- a/nixos/tests/cassandra.nix
+++ b/nixos/tests/cassandra.nix
@@ -9,13 +9,7 @@ let
inherit clusterName;
listenAddress = ipAddress;
rpcAddress = ipAddress;
- extraConfig =
- { start_native_transport = true;
- seed_provider =
- [{ class_name = "org.apache.cassandra.locator.SimpleSeedProvider";
- parameters = [ { seeds = "192.168.1.1"; } ];
- }];
- };
+ seedAddresses = [ "192.168.1.1" ];
package = testPackage;
};
nodeCfg = ipAddress: extra: {pkgs, config, ...}: