diff options
author | Florian Klink <flokli@flokli.de> | 2023-03-10T22·24+0100 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2023-03-11T14·12+0000 |
commit | b049b88d2d7bcb9caef158ffdf9cd931c62d2511 (patch) | |
tree | 904030b3aaddf712ddc3259ecdd3a872d7afc3ee /tvix/store/src/chunkservice/mod.rs | |
parent | 2dc93f8de26ba15106fe8a086bb85ca50c09860a (diff) |
refactor(tvix/store): factor out hash update into function r/5952
We're using this in a bunch of places. Let's move it into a helper function. Change-Id: I118fba35f6d343704520ba37280e4ca52a61da44 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8251 Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Reviewed-by: raitobezarius <tvl@lahfa.xyz>
Diffstat (limited to 'tvix/store/src/chunkservice/mod.rs')
-rw-r--r-- | tvix/store/src/chunkservice/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/store/src/chunkservice/mod.rs b/tvix/store/src/chunkservice/mod.rs index 725ed2014e5b..60bef3765d1b 100644 --- a/tvix/store/src/chunkservice/mod.rs +++ b/tvix/store/src/chunkservice/mod.rs @@ -7,6 +7,7 @@ use crate::Error; pub use self::memory::MemoryChunkService; pub use self::sled::SledChunkService; +pub use self::util::update_hasher; pub use self::util::upload_chunk; /// The base trait all ChunkService services need to implement. |