mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
prometheus-nginx-exporter: fix bool to string coercion
This commit is contained in:
parent
ae7c71e267
commit
27eb2859f2
|
@ -39,7 +39,7 @@ in
|
|||
--nginx.scrape_uri '${cfg.scrapeUri}' \
|
||||
--telemetry.address ${cfg.listenAddress}:${toString cfg.port} \
|
||||
--telemetry.endpoint ${cfg.telemetryEndpoint} \
|
||||
--insecure ${cfg.insecure} \
|
||||
--insecure ${toString cfg.insecure} \
|
||||
${concatStringsSep " \\\n " cfg.extraFlags}
|
||||
'';
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue