mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
fix(unstable): kv watch should stop when db is closed (#21665)
Fixes #21634.
This commit is contained in:
parent
68254ddc20
commit
b30dc11c4f
2 changed files with 30 additions and 5 deletions
|
@ -2248,3 +2248,23 @@ dbTest("set with key versionstamp suffix", async (db) => {
|
||||||
"expected string, number, bigint, ArrayBufferView, boolean",
|
"expected string, number, bigint, ArrayBufferView, boolean",
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Deno.test({
|
||||||
|
name: "watch should stop when db closed",
|
||||||
|
async fn() {
|
||||||
|
const db = await Deno.openKv(":memory:");
|
||||||
|
|
||||||
|
const watch = db.watch([["a"]]);
|
||||||
|
const completion = (async () => {
|
||||||
|
for await (const _item of watch) {
|
||||||
|
// pass
|
||||||
|
}
|
||||||
|
})();
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
db.close();
|
||||||
|
}, 100);
|
||||||
|
|
||||||
|
await completion;
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
|
@ -444,16 +444,21 @@ async fn op_kv_watch_next(
|
||||||
let cancel_handle = resource.cancel_handle.clone();
|
let cancel_handle = resource.cancel_handle.clone();
|
||||||
let stream = RcRef::map(resource, |r| &r.stream)
|
let stream = RcRef::map(resource, |r| &r.stream)
|
||||||
.borrow_mut()
|
.borrow_mut()
|
||||||
.or_cancel(db_cancel_handle)
|
.or_cancel(db_cancel_handle.clone())
|
||||||
.or_cancel(cancel_handle)
|
.or_cancel(cancel_handle.clone())
|
||||||
.await;
|
.await;
|
||||||
let Ok(Ok(mut stream)) = stream else {
|
let Ok(Ok(mut stream)) = stream else {
|
||||||
return Ok(None);
|
return Ok(None);
|
||||||
};
|
};
|
||||||
|
|
||||||
// doesn't need a cancel handle because the stream ends when the database
|
// We hold a strong reference to `resource`, so we can't rely on the stream
|
||||||
// connection is closed
|
// being dropped when the db connection is closed
|
||||||
let Some(res) = stream.next().await else {
|
let Ok(Ok(Some(res))) = stream
|
||||||
|
.next()
|
||||||
|
.or_cancel(db_cancel_handle)
|
||||||
|
.or_cancel(cancel_handle)
|
||||||
|
.await
|
||||||
|
else {
|
||||||
return Ok(None);
|
return Ok(None);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue