fix(tvix/nar-bridge): remove leftover debug statement
Change-Id: Ie6fb822e1a4b76f2f6aef15bbe846e0a89c644fb Reviewed-on: https://cl.tvl.fyi/c/depot/+/11999 Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: yuka <yuka@yuka.dev>
This commit is contained in:
parent
98f59cb828
commit
ba38883a4f
1 changed files with 1 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
use axum::http::StatusCode;
|
use axum::http::StatusCode;
|
||||||
use bytes::Bytes;
|
use bytes::Bytes;
|
||||||
use nix_compat::{narinfo::NarInfo, nixbase32};
|
use nix_compat::{narinfo::NarInfo, nixbase32};
|
||||||
use tracing::{info, instrument, warn, Span};
|
use tracing::{instrument, warn, Span};
|
||||||
use tvix_castore::proto::{self as castorepb, node::Node};
|
use tvix_castore::proto::{self as castorepb, node::Node};
|
||||||
use tvix_store::proto::PathInfo;
|
use tvix_store::proto::PathInfo;
|
||||||
|
|
||||||
|
@ -135,8 +135,6 @@ pub async fn put(
|
||||||
|
|
||||||
match maybe_root_node {
|
match maybe_root_node {
|
||||||
Some(root_node) => {
|
Some(root_node) => {
|
||||||
info!(narinfo.store_path=%narinfo.store_path, narinfo.store_path=?narinfo.store_path, "NARINFO STORE PATH");
|
|
||||||
|
|
||||||
// Set the root node from the lookup.
|
// Set the root node from the lookup.
|
||||||
// We need to rename the node to the narinfo storepath basename, as
|
// We need to rename the node to the narinfo storepath basename, as
|
||||||
// that's where it's stored in PathInfo.
|
// that's where it's stored in PathInfo.
|
||||||
|
|
Loading…
Add table
Reference in a new issue