about summary refs log tree commit diff
path: root/nixos/tests/graphite.nix
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2022-07-10 09:03:35 +0000
committerAlyssa Ross <hi@alyssa.is>2022-07-10 09:46:20 +0000
commit1f18d441063208968f38bed0fe5ddbcdb8f6cf34 (patch)
tree8dc735d1acfa5a928a37ab226b25f9885f722a71 /nixos/tests/graphite.nix
parent9f2c91667dd687fef9b92b2b5b04c610e94bf907 (diff)
python3.pkgs.graphite_api: remove
Due to lack of maintenance.  It doesn't build, the last upstream
commit was in 2017, and last significant change in Nixpkgs was in
2018.
Diffstat (limited to 'nixos/tests/graphite.nix')
-rw-r--r--nixos/tests/graphite.nix10
1 files changed, 0 insertions, 10 deletions
diff --git a/nixos/tests/graphite.nix b/nixos/tests/graphite.nix
index ce6b667bd3447..c534d45428e19 100644
--- a/nixos/tests/graphite.nix
+++ b/nixos/tests/graphite.nix
@@ -12,11 +12,6 @@ import ./make-test-python.nix ({ pkgs, ... } :
               SECRET_KEY = "abcd";
             '';
           };
-          api = {
-            enable = true;
-            port = 8082;
-            finders = [ ];
-          };
           carbon.enableCache = true;
           seyren.enable = false;  # Implicitely requires openssl-1.0.2u which is marked insecure
         };
@@ -27,20 +22,15 @@ import ./make-test-python.nix ({ pkgs, ... } :
     start_all()
     one.wait_for_unit("default.target")
     one.wait_for_unit("graphiteWeb.service")
-    one.wait_for_unit("graphiteApi.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(8082)
     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"
     )
-    one.wait_until_succeeds(
-        "curl 'http://localhost:8082/metrics/find/?query=foo&format=treejson' --silent | grep foo >&2"
-    )
   '';
 })