diff options
author | Florian Klink <flokli@flokli.de> | 2024-03-18T10·07+0200 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2024-03-18T16·10+0000 |
commit | 898830b332b384fb9c4db124b0960bc3171e03bb (patch) | |
tree | d5a27bb1ef751632cbc37051ceb1529c1f6f9896 /tvix/boot/default.nix | |
parent | 997b59e4526d2313580c9c2de71285c77dc28e77 (diff) |
fix(tvix/boot/tests): disable otlp r/7728
We don't have a OTLP collector inside the Nix build, this removes some noise from the log about not being able to reach it. Change-Id: I058839c8f214821b536306c8c30e1a8e7192153b Reviewed-on: https://cl.tvl.fyi/c/depot/+/11189 Tested-by: BuildkiteCI Autosubmit: flokli <flokli@flokli.de> Reviewed-by: Connor Brewster <cbrewster@hey.com>
Diffstat (limited to 'tvix/boot/default.nix')
-rw-r--r-- | tvix/boot/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/boot/default.nix b/tvix/boot/default.nix index db32c9ce7c4d..22a696060c76 100644 --- a/tvix/boot/default.nix +++ b/tvix/boot/default.nix @@ -83,7 +83,7 @@ rec { trap cleanup EXIT # Spin up the virtiofs daemon - tvix-store virtiofs -l $tempdir/tvix.sock & + tvix-store --otlp=false virtiofs -l $tempdir/tvix.sock & virtiofsd_pid=$! # Wait for the socket to exist. |