Skip to content

Commit

Permalink
Fix the path for default key-value stores
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Levick <ryan.levick@fermyon.com>
  • Loading branch information
rylev committed Sep 2, 2024
1 parent 74d3517 commit c6230bf
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions crates/runtime-config/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -421,9 +421,7 @@ pub fn key_value_config_resolver(
key_value
.add_default_store::<SpinKeyValueStore>(
DEFAULT_KEY_VALUE_STORE_LABEL,
SpinKeyValueRuntimeConfig::new(
local_store_base_path.map(|p| p.join(DEFAULT_SPIN_STORE_FILENAME)),
),
SpinKeyValueRuntimeConfig::new(Some(PathBuf::from(DEFAULT_SPIN_STORE_FILENAME))),
)
.unwrap();

Expand Down

0 comments on commit c6230bf

Please sign in to comment.