nixosTests.mysql-replication: fix deprecation warning
This commit is contained in:
@@ -42,7 +42,7 @@ let
|
|||||||
enable = true;
|
enable = true;
|
||||||
replication.role = "slave";
|
replication.role = "slave";
|
||||||
replication.serverId = 2;
|
replication.serverId = 2;
|
||||||
replication.masterHost = nodes.primary.config.networking.hostName;
|
replication.masterHost = nodes.primary.networking.hostName;
|
||||||
replication.masterUser = replicateUser;
|
replication.masterUser = replicateUser;
|
||||||
replication.masterPassword = replicatePassword;
|
replication.masterPassword = replicatePassword;
|
||||||
};
|
};
|
||||||
@@ -54,7 +54,7 @@ let
|
|||||||
enable = true;
|
enable = true;
|
||||||
replication.role = "slave";
|
replication.role = "slave";
|
||||||
replication.serverId = 3;
|
replication.serverId = 3;
|
||||||
replication.masterHost = nodes.primary.config.networking.hostName;
|
replication.masterHost = nodes.primary.networking.hostName;
|
||||||
replication.masterUser = replicateUser;
|
replication.masterUser = replicateUser;
|
||||||
replication.masterPassword = replicatePassword;
|
replication.masterPassword = replicatePassword;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user