From 035fdc710bd4abbf9cad7df62489653b041991a3 Mon Sep 17 00:00:00 2001 From: Daniel Flanagan Date: Sat, 14 Sep 2024 09:51:07 -0500 Subject: [PATCH] Increase default timeout I need to investigate why these calls take so long: 1. Deno Deploy cold starts? 2. Netlify rate limits or slowness? Can I make some use of caching? --- modules/nixos/deno-netlify-ddns-client.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nixos/deno-netlify-ddns-client.nix b/modules/nixos/deno-netlify-ddns-client.nix index f5c39e4..e75c359 100644 --- a/modules/nixos/deno-netlify-ddns-client.nix +++ b/modules/nixos/deno-netlify-ddns-client.nix @@ -31,7 +31,7 @@ in { requestTimeout = mkOption { type = types.int; description = "The maximum number of seconds before the HTTP request times out."; - default = 30; + default = 180; }; afterBootTime = mkOption { type = types.str;