Skip to content

Commit 2e9d47a

Browse files
committed
default to tmp file
1 parent e2ad0cc commit 2e9d47a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ async fn main() -> Result<()> {
4141
} else if let Some(dir) = cli.directory_path {
4242
AnyHeapStorage::File(FileHeapStorage::new(dir))
4343
} else {
44-
// default to s3
45-
AnyHeapStorage::S3(S3HeapStorage::new("test-mcp-js-bucket").await)
44+
// default to file /tmp/mcp-v8-heaps
45+
AnyHeapStorage::File(FileHeapStorage::new("/tmp/mcp-v8-heaps"))
4646
};
4747

4848

0 commit comments

Comments
 (0)