diff options
Diffstat (limited to 'tvix/castore/src/composition.rs')
-rw-r--r-- | tvix/castore/src/composition.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tvix/castore/src/composition.rs b/tvix/castore/src/composition.rs index e997152d60be..1cbf97e1893a 100644 --- a/tvix/castore/src/composition.rs +++ b/tvix/castore/src/composition.rs @@ -64,8 +64,8 @@ //! }, //! "root": { //! "type": "combined", -//! "local": "blobstore1", -//! "remote": "blobstore2" +//! "near": "blobstore1", +//! "far": "blobstore2" //! } //! }); //! @@ -555,13 +555,13 @@ mod test { let blob_services_configs_json = serde_json::json!({ "root": { "type": "combined", - "local": "other", - "remote": "other" + "near": "other", + "far": "other" }, "other": { "type": "combined", - "local": "root", - "remote": "root" + "near": "root", + "far": "root" } }); |