about summary refs log tree commit diff
path: root/tvix/boot
diff options
context:
space:
mode:
authorIlan Joselevich <personal@ilanjoselevich.com>2024-08-01T15·03+0300
committerclbot <clbot@tvl.fyi>2024-08-04T13·58+0000
commit480a8106cf4761658e624fb05d6e639702bdda1a (patch)
tree1fa4bc61af9a3afc3878c3c14d759f5c10a5837c /tvix/boot
parent26129c1761259290cf47de4358a90f3608fe83ae (diff)
feat(tvix/store): Sled{PathInfo,Directory}Service -> Redb… r/8442
Use redb instead of sled for the default filesystem implementation of
PathInfoService and DirectoryService. In the future we'll also drop sled
support completely.

Change-Id: I513ff0c2ff953d59714aa50b9aa1301b02f53d40
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12085
Autosubmit: Ilan Joselevich <personal@ilanjoselevich.com>
Reviewed-by: flokli <flokli@flokli.de>
Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/boot')
-rw-r--r--tvix/boot/tests/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/boot/tests/default.nix b/tvix/boot/tests/default.nix
index 051202cc20a9..7b9fbbbf8c57 100644
--- a/tvix/boot/tests/default.nix
+++ b/tvix/boot/tests/default.nix
@@ -157,8 +157,8 @@ depot.nix.readTree.drvTargets
   });
   docs-persistent = (mkBootTest {
     blobServiceAddr = "objectstore+file:///build/blobs";
-    directoryServiceAddr = "sled:///build/directories.sled";
-    pathInfoServiceAddr = "sled:///build/pathinfo.sled";
+    directoryServiceAddr = "redb:///build/directories.redb";
+    pathInfoServiceAddr = "redb:///build/pathinfo.redb";
     path = ../../docs;
     importPathName = "docs";
   });