From 5777f246a526b59d8d322b09b1892e15fc900980 Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Fri, 29 Apr 2016 03:37:25 +0200 Subject: [PATCH] hydra-module: fix debug attribute --- hydra-module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hydra-module.nix b/hydra-module.nix index b4253478..a75086cd 100644 --- a/hydra-module.nix +++ b/hydra-module.nix @@ -30,7 +30,7 @@ let { HYDRA_TRACKER = cfg.tracker; COLUMNS = "80"; PGPASSFILE = "${baseDir}/pgpass-www"; # grrr - } // (optionalAttrs cfg.debugServer { DBIC_TRACE = 1; }); + } // (optionalAttrs cfg.debugServer { DBIC_TRACE = "1"; }); localDB = "dbi:Pg:dbname=hydra;user=hydra;";