From 02ea0affa0915e1980790386785836c598a5b562 Mon Sep 17 00:00:00 2001 From: Daniel Langbein Date: Wed, 28 Jun 2023 23:14:23 +0200 Subject: [PATCH] feat: 1 day cache validity --- src/netcup_dns/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/netcup_dns/main.py b/src/netcup_dns/main.py index 7f91d1c..ba18486 100644 --- a/src/netcup_dns/main.py +++ b/src/netcup_dns/main.py @@ -74,7 +74,7 @@ def parse_args(): help='Value in seconds for how long cached DNS records are valid.' ' Set to `0` to disable caching.', dest='cache_validity_seconds', - default=7200, + default=86400, type=int) args = parser.parse_args()