Skip to content

Commit e5e20c5

Browse files
committed
fixup
1 parent 2a96e03 commit e5e20c5

File tree

1 file changed

+2
-2
lines changed
  • turbopack/crates/turbo-tasks-backend/src

1 file changed

+2
-2
lines changed

turbopack/crates/turbo-tasks-backend/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ pub fn lmdb_backing_storage(path: &Path) -> Result<LmdbBackingStorage> {
3636

3737
pub type NoopBackingStorage = KeyValueDatabaseBackingStorage<NoopKvDb>;
3838

39-
pub fn noop_backing_storage(_path: &Path) -> Result<NoopBackingStorage> {
40-
Ok(KeyValueDatabaseBackingStorage::new(NoopKvDb))
39+
pub fn noop_backing_storage() -> NoopBackingStorage {
40+
KeyValueDatabaseBackingStorage::new(NoopKvDb)
4141
}
4242

4343
pub type DefaultBackingStorage = LmdbBackingStorage;

0 commit comments

Comments
 (0)