Skip to content

Commit c6230bf

Browse files
committed
Fix the path for default key-value stores
Signed-off-by: Ryan Levick <[email protected]>
1 parent 74d3517 commit c6230bf

File tree

1 file changed

+1
-3
lines changed
  • crates/runtime-config/src

1 file changed

+1
-3
lines changed

crates/runtime-config/src/lib.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -421,9 +421,7 @@ pub fn key_value_config_resolver(
421421
key_value
422422
.add_default_store::<SpinKeyValueStore>(
423423
DEFAULT_KEY_VALUE_STORE_LABEL,
424-
SpinKeyValueRuntimeConfig::new(
425-
local_store_base_path.map(|p| p.join(DEFAULT_SPIN_STORE_FILENAME)),
426-
),
424+
SpinKeyValueRuntimeConfig::new(Some(PathBuf::from(DEFAULT_SPIN_STORE_FILENAME))),
427425
)
428426
.unwrap();
429427

0 commit comments

Comments
 (0)