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 7ef82e4 commit e2c3142Copy full SHA for e2c3142
src/content/docs/kv/api/write-key-value-pairs.mdx
@@ -209,7 +209,7 @@ export default {
209
// Helper function to attempt a write to KV with retries
210
const attemptWrite = async (i: number) => {
211
return await retryWithBackoff(async () => {
212
- await env.simple_kv_hono_jsx.put(key, `Write attempt #${i}`);
+ await env.YOUR_KV_NAMESPACE.put(key, `Write attempt #${i}`);
213
return { attempt: i, success: true };
214
});
215
};
0 commit comments