MelerEcckmanLawler
MelerEcckmanLawler
DDeno
Created by MelerEcckmanLawler on 4/13/2025 in #help
kv.watch() not working
for await (const entry of kv.watch([['chat']])) console.log(entry);
for await (const entry of kv.watch([['chat']])) console.log(entry);
The only thing this does is immediately prints the following:
[ { key: [ "chat" ], value: null, versionstamp: null } ]
[ { key: [ "chat" ], value: null, versionstamp: null } ]
What it's supposed to do is print each new entry added to the database under key "chat", but it doesn't. I can prove the entries are being added by running this inside an interval every couple seconds:
console.log(await Array.fromAsync(kv.list({ prefix: ['chat'] })));
console.log(await Array.fromAsync(kv.list({ prefix: ['chat'] })));
3 replies
DDeno
Created by MelerEcckmanLawler on 10/28/2024 in #help
INTERNAL_SERVER_ERROR_3
Will my server stop crashing with this error if I upgrade to a paid subscription? It's very frustrating for me and visitors to my website.
32 replies
DDeno
Created by MelerEcckmanLawler on 10/4/2024 in #help
INTERNAL_SERVER_ERROR_3
I occasionally get this error, and I suspect it has something to do with getting lots of traffic:
Internal Server Error (INTERNAL_SERVER_ERROR_3) An error has occurred inside of a Deno Deploy system
My website is https://wordcel.org, and you can probably replicate the issue if you visit this page and just keep clicking random answers for a while: https://wordcel.org/number-series/test My logs at dash.deno.com don't mention the error.
1 replies