diff options
author | Florian Klink <flokli@flokli.de> | 2024-11-09T17·07+0000 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2024-11-11T18·46+0000 |
commit | a218f421b2e4694d350e262d8cd52775359bca26 (patch) | |
tree | 533ec696aa06539a0c9f0875891b666866213200 | |
parent | a9f453f6da90c39c67df209d298062b751b93f73 (diff) |
refactor(tvix/store): move Cache to cache mod r/8902
This being in combinators makes it harder to find. Change-Id: If7984bdbd43f164c670548639bb4846d859f6695 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12750 Reviewed-by: yuka <yuka@yuka.dev> Tested-by: BuildkiteCI
-rw-r--r-- | tvix/store/src/pathinfoservice/cache.rs (renamed from tvix/store/src/pathinfoservice/combinators.rs) | 0 | ||||
-rw-r--r-- | tvix/store/src/pathinfoservice/mod.rs | 6 |
2 files changed, 2 insertions, 4 deletions
diff --git a/tvix/store/src/pathinfoservice/combinators.rs b/tvix/store/src/pathinfoservice/cache.rs index df0046875057..df0046875057 100644 --- a/tvix/store/src/pathinfoservice/combinators.rs +++ b/tvix/store/src/pathinfoservice/cache.rs diff --git a/tvix/store/src/pathinfoservice/mod.rs b/tvix/store/src/pathinfoservice/mod.rs index d31a1e652e3b..e64f1e2fcd2a 100644 --- a/tvix/store/src/pathinfoservice/mod.rs +++ b/tvix/store/src/pathinfoservice/mod.rs @@ -1,4 +1,4 @@ -mod combinators; +mod cache; mod from_addr; mod grpc; mod lru; @@ -22,9 +22,7 @@ use tvix_castore::Error; use crate::nar::NarCalculationService; pub use crate::path_info::PathInfo; -pub use self::combinators::{ - Cache as CachePathInfoService, CacheConfig as CachePathInfoServiceConfig, -}; +pub use self::cache::{Cache as CachePathInfoService, CacheConfig as CachePathInfoServiceConfig}; pub use self::from_addr::from_addr; pub use self::grpc::{GRPCPathInfoService, GRPCPathInfoServiceConfig}; pub use self::lru::{LruPathInfoService, LruPathInfoServiceConfig}; |