From 3abc11d873a746730074d191c850bbe73dd88f61 Mon Sep 17 00:00:00 2001 From: Denis Lehmann Date: Sat, 11 Jun 2022 12:31:00 +0200 Subject: [PATCH] parse timeout to string --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index c63799d..95ac457 100644 --- a/flake.nix +++ b/flake.nix @@ -98,7 +98,7 @@ ExecStart = '' ${gunicorn}/bin/gunicorn "raincloud:create_app('${cfg.basePath}', '${cfg.cloudName}')" \ - --timeout ${cfg.workerTimeout} \ + --timeout ${toString cfg.workerTimeout} \ --bind=${cfg.address}:${toString cfg.port} ''; };