We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Kv#close()
Promise
According to the API docs, the type of Deno.Kv#close() is () => Promise<void>, however, it actually returns undefined.
Deno.Kv#close()
() => Promise<void>
undefined.
The following snippet demonstrates this:
let kv = await Deno.openKv(); console.log(kv.close()); //=> undefined
The text was updated successfully, but these errors were encountered:
fix(kv): kv.close() interrupts in-flight operations (#19076)
320c6d3
Fixes #19049
d45ca4c
losfair
Successfully merging a pull request may close this issue.
According to the API docs, the type of
Deno.Kv#close()
is() => Promise<void>
, however, it actually returnsundefined.
The following snippet demonstrates this:
The text was updated successfully, but these errors were encountered: