From 4010e33395e8c86d009e64d3c442e03e8212ab2b Mon Sep 17 00:00:00 2001 From: Ophestra Date: Wed, 23 Jul 2025 10:55:42 +0900 Subject: [PATCH] exec: increase default wait delay Should avoid killing Nix command whenever possible. --- exec.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exec.go b/exec.go index 6973404..65b27de 100644 --- a/exec.go +++ b/exec.go @@ -11,7 +11,7 @@ import ( ) const ( - defaultWaitDelay = 15 * time.Second + defaultWaitDelay = 30 * time.Second ) // Nix is the name of the nix program.