You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix retrieving serverId command for seed cluster section (#904) (#910)
The section for retrieving the serverId here
https://neo4j.com/docs/operations-manual/current/clustering/databases/#cluster-designated-seeder
is not correct.
The docs use `SHOW SERVERS` which will return the name of the server, by
default it has the same name as the serverId, but in case servers were
renamed, using
```
RENAME SERVER `25a7efc7-d063-44b8-bdee-f23357f89f01` TO `primary1`
```
then it will not match anymore and trying to use `primary1` as serverId
while following the documentation will lead to the following exception
when seeding a cluster :
```
Could not create database with specified existingDataSeedInstance 'optimus-001'. Expected server uuid string.
```
This PR ensures that the correct serverId is returned when following the
documentation.
Co-authored-by: Christophe Willemsen <[email protected]>
0 commit comments