nixosTests.mysql-replication: fix deprecation warning

ajs124 81244087 d46e3b6a

Changed files
+2 -2
nixos
tests
+2 -2
nixos/tests/mysql/mysql-replication.nix
···
enable = true;
replication.role = "slave";
replication.serverId = 2;
-
replication.masterHost = nodes.primary.config.networking.hostName;
+
replication.masterHost = nodes.primary.networking.hostName;
replication.masterUser = replicateUser;
replication.masterPassword = replicatePassword;
};
···
enable = true;
replication.role = "slave";
replication.serverId = 3;
-
replication.masterHost = nodes.primary.config.networking.hostName;
+
replication.masterHost = nodes.primary.networking.hostName;
replication.masterUser = replicateUser;
replication.masterPassword = replicatePassword;
};