mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
40 lines
1.2 KiB
Nix
40 lines
1.2 KiB
Nix
import ./make-test-python.nix (
|
|
{ pkgs, ... }:
|
|
{
|
|
name = "graphite";
|
|
nodes = {
|
|
one =
|
|
{ ... }:
|
|
{
|
|
time.timeZone = "UTC";
|
|
services.graphite = {
|
|
web = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
SECRET_KEY = "abcd";
|
|
'';
|
|
};
|
|
carbon.enableCache = true;
|
|
seyren.enable = false; # Implicitly requires openssl-1.0.2u which is marked insecure
|
|
};
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
start_all()
|
|
one.wait_for_unit("default.target")
|
|
one.wait_for_unit("graphiteWeb.service")
|
|
one.wait_for_unit("carbonCache.service")
|
|
# The services above are of type "simple". systemd considers them active immediately
|
|
# even if they're still in preStart (which takes quite long for graphiteWeb).
|
|
# Wait for ports to open so we're sure the services are up and listening.
|
|
one.wait_for_open_port(8080)
|
|
one.wait_for_open_port(2003)
|
|
one.succeed('echo "foo 1 `date +%s`" | nc -N localhost 2003')
|
|
one.wait_until_succeeds(
|
|
"curl 'http://localhost:8080/metrics/find/?query=foo&format=treejson' --silent | grep foo >&2"
|
|
)
|
|
'';
|
|
}
|
|
)
|