We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6e93db commit 0a9ed8aCopy full SHA for 0a9ed8a
turbopack/crates/turbo-tasks-backend/src/kv_backing_storage.rs
@@ -107,10 +107,10 @@ impl<T: KeyValueDatabase> KeyValueDatabaseBackingStorage<T> {
107
108
fn get_infra_u32(database: &impl KeyValueDatabase, key: u32) -> Result<Option<u32>> {
109
let tx = database.begin_read_transaction()?;
110
- Ok(database
+ database
111
.get(&tx, KeySpace::Infra, IntKey::new(key).as_ref())?
112
.map(as_u32)
113
- .transpose()?)
+ .transpose()
114
}
115
116
impl<T: KeyValueDatabase + Send + Sync + 'static> BackingStorage
0 commit comments