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
Unable to update DNS entries: Unable to get member list: json: cannot unmarshal array into Go struct field .Config.Tags of type string
# Configuration file for ztDNS
suffix = "zt"
port = 53
interface = "ztyou4q"
# Number of minutes to wait before updating the DNS database again (Default: 30)
DBRefresh = 30
# This section contains information related to your ZeroTier config
[ZT]
# API is used to contact the ZeroTier controller API service.
API = "hQFtY3uX0UH9TGqWabcdefghi"
# URL is the url of the ZeroTier controller API
URL = "https://my.zerotier.com/api"
# This section contains one or more ZeroTier networks
# Format is: domain = "NetworkID"
# Domain does not have to match the configured network name
[Networks]
domain = "networkid3646546"
The text was updated successfully, but these errors were encountered:
There will need to be a code-fix to actually resolve this issue however was able to resolve it by:
Removing Tags from the Firewall Rules . This allowed the info status to indicate it was retrieving members from the domain before erroring out with the same error
Using the ZTAPI and manually patching any online nodes that have tags to set their tags back to an empty set [ ].
ztdns is expecting tags to be a string but it is now a set of values, so it doesn't map to the expected go struct.
Unable to update DNS entries: Unable to get member list: json: cannot unmarshal array into Go struct field .Config.Tags of type string
The text was updated successfully, but these errors were encountered: