refactor(tvix/store): rename import::{import_path -> ingest_path}

This distinguishes it better from the EvalIO::import_path method.
Also update the docstring to explain what it does (and what it doesn't).

Change-Id: I32a8b2869fa67a894df28532b22bf170961a2abf
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8578
Reviewed-by: tazjin <tazjin@tvl.su>
Autosubmit: flokli <flokli@flokli.de>
Tested-by: BuildkiteCI
This commit is contained in:
Florian Klink 2023-05-17 14:21:26 +03:00 committed by clbot
parent a6c7869393
commit 3a4e29c261
3 changed files with 13 additions and 12 deletions

View file

@ -9,7 +9,7 @@ use std::path::PathBuf;
use tracing_subscriber::prelude::*;
use tvix_store::blobservice::SledBlobService;
use tvix_store::directoryservice::SledDirectoryService;
use tvix_store::import::import_path;
use tvix_store::import::ingest_path;
use tvix_store::nar::NARCalculationService;
use tvix_store::nar::NonCachingNARCalculationService;
use tvix_store::pathinfoservice::SledPathInfoService;
@ -135,7 +135,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
);
for path in paths {
let root_node = import_path(&mut blob_service, &mut directory_service, &path)?;
let root_node = ingest_path(&mut blob_service, &mut directory_service, &path)?;
let nar_hash = NixHashWithMode::Recursive(NixHash::new(
HashAlgo::Sha256,