nixosTests.mysql-replication: fix deprecation warning
This commit is contained in:
parent
d46e3b6a84
commit
81244087ab
1 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@ let
|
|||
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;
|
||||
};
|
||||
|
@ -54,7 +54,7 @@ let
|
|||
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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue