Skip to content

Commit

Permalink
HASURA_GRAPHQL_ENABLE_TELEMETRY value should be string in nixos config
Browse files Browse the repository at this point in the history
  • Loading branch information
jbgi committed Feb 1, 2021
1 parent ec850bb commit 53e5336
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nix/nixos/cardano-graphql-service.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 53e5336

Please sign in to comment.