From 53e533619fa60a90f1ab5d3fc8afa0503b341998 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Giraudeau Date: Mon, 1 Feb 2021 15:36:14 +0100 Subject: [PATCH] HASURA_GRAPHQL_ENABLE_TELEMETRY value should be string in nixos config --- nix/nixos/cardano-graphql-service.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nix/nixos/cardano-graphql-service.nix b/nix/nixos/cardano-graphql-service.nix index e00a3305..cd418455 100644 --- a/nix/nixos/cardano-graphql-service.nix +++ b/nix/nixos/cardano-graphql-service.nix @@ -42,12 +42,12 @@ in { type = lib.types.int; default = 9999; }; - + loggerMinSeverity = lib.mkOption { type = lib.types.str; default = "info"; }; - + port = lib.mkOption { type = lib.types.int; default = 3100; @@ -141,7 +141,7 @@ in { GENESIS_FILE_BYRON = cfg.genesisByron; GENESIS_FILE_SHELLEY = cfg.genesisShelley; HASURA_CLI_PATH = hasura-cli + "/bin/hasura"; - HASURA_GRAPHQL_ENABLE_TELEMETRY = false; + HASURA_GRAPHQL_ENABLE_TELEMETRY = "false"; HASURA_URI = hasuraBaseUri; JQ_PATH = pkgs.jq + "/bin/jq"; LOGGER_MIN_SEVERITY = cfg.loggerMinSeverity;