Merge pull request #12467 from SergeTupchiy/autocluster-dns-aaaaa-record-type

feat(emqx_conf): support AAAA cluster dns record type
This commit is contained in:
SergeTupchiy 2024-02-02 18:13:06 +02:00 committed by GitHub
commit 81433282be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -259,7 +259,7 @@ fields(cluster_dns) ->
)},
{"record_type",
sc(
hoconsc:enum([a, srv]),
hoconsc:enum([a, aaaa, srv]),
#{
default => a,
desc => ?DESC(cluster_dns_record_type),

View File

@ -0,0 +1 @@
Support cluster discovery using AAAA DNS record type.