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
In the daemon mode, CDD uses the state file to decide where to continue with processing or not. It exits earlier when the IP in the state file matches the currently selected IP. Apart from the IP, the state file name can change. It is composed of: the interface name, the IP stack (ipv4 or ipv6) and the hash from the domain names.
According to this logic, changes to other configuration values like proxy or ttl do not trigger re-processing. The workaround is to delete the state file.
This can be solved by including more information in state files. A state file can be named after the configuration file used to run CDD and can contain a bigger subset of the configuration serialized (instead of only IP).
The text was updated successfully, but these errors were encountered:
In the daemon mode, CDD uses the state file to decide where to continue with processing or not. It exits earlier when the IP in the state file matches the currently selected IP. Apart from the IP, the state file name can change. It is composed of: the interface name, the IP stack (ipv4 or ipv6) and the hash from the domain names.
cloudflare-dynamic-dns/cmd/cmd.go
Lines 369 to 371 in 4d3b38c
According to this logic, changes to other configuration values like
proxy
orttl
do not trigger re-processing. The workaround is to delete the state file.This can be solved by including more information in state files. A state file can be named after the configuration file used to run CDD and can contain a bigger subset of the configuration serialized (instead of only IP).
The text was updated successfully, but these errors were encountered: