From c91f8af41af34397c06decbd584c3304ca74b021 Mon Sep 17 00:00:00 2001 From: Eric Rodrigues Pires Date: Wed, 6 May 2026 20:32:30 -0300 Subject: [PATCH] nixos/tests/invidious: replace sig-helper with companion --- nixos/tests/invidious.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/tests/invidious.nix b/nixos/tests/invidious.nix index 97086ace4d6b..822f884d9a49 100644 --- a/nixos/tests/invidious.nix +++ b/nixos/tests/invidious.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ ... }: { name = "invidious"; @@ -24,7 +24,7 @@ networking.firewall.allowedTCPPorts = [ config.services.postgresql.settings.port ]; }; machine = - { lib, pkgs, ... }: + { pkgs, ... }: { services.invidious = { enable = true; @@ -142,7 +142,7 @@ # invidious does connect to the sig helper though and crashes when the sig helper is not available machine.wait_for_open_port(80) curl_assert_status_code("http://invidious.example.com/search", 200) - machine.succeed("journalctl -eu invidious.service | grep -o \"SigHelper: Using helper at 'tcp://127.0.0.1:2999'\"") + machine.succeed("journalctl -eu invidious.service | grep -o \"WARNING: Invidious companion is required to view and playback videos\"") postgres_tcp.wait_for_unit("postgresql.target") activate_specialisation("postgres-tcp")