Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

default runtime dir use temp_dir #1108

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update crates/spfs/src/runtime/storage.rs
Co-authored-by: Ryan Bottriell <[email protected]>
Signed-off-by: Philippe Llerena <[email protected]>
  • Loading branch information
doubleailes and rydrman committed Sep 2, 2024
commit 1116dc740d4679c00563c07539c920cdf14c97e4
4 changes: 2 additions & 2 deletions crates/spfs/src/runtime/storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -408,8 +408,8 @@ pub struct Config {

impl Default for Config {
fn default() -> Self {
// Default RUNTIME_DIR
Self::from_root(temp_dir().join("spfs-runtime"))
let default_runtime_dir = temp_dir().join("spfs-runtime");
Self::from_root(default_runtime_dir)
}
}

Expand Down
Loading