Merge pull request #6035 from jrasell/patch-6

Update example setup to use non-deprecated join
This commit is contained in:
Mahmood Ali 2019-07-31 02:27:51 -05:00 committed by GitHub
commit 7d8dc50514
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -193,7 +193,12 @@ the cluster
server { server {
enabled = true enabled = true
bootstrap_expect = 3 bootstrap_expect = 3
retry_join = ["1.2.3.4", "5.6.7.8"]
server_join {
retry_join = [ "1.1.1.1", "2.2.2.2" ]
retry_max = 3
retry_interval = "15s"
}
} }
``` ```