forked from svrjs/svrjs
fix: add notice about Deno support being experimental
This commit is contained in:
parent
648cf488d9
commit
ad0417b468
1 changed files with 4 additions and 0 deletions
|
@ -1727,6 +1727,10 @@ function start(init) {
|
||||||
serverconsole.locwarnmessage(
|
serverconsole.locwarnmessage(
|
||||||
"PBKDF2 password hashing function in Bun versions older than v1.1.13 blocks the event loop, which may result in denial of service."
|
"PBKDF2 password hashing function in Bun versions older than v1.1.13 blocks the event loop, which may result in denial of service."
|
||||||
);
|
);
|
||||||
|
} else if (process.versions && process.versions.deno) {
|
||||||
|
serverconsole.locwarnmessage(
|
||||||
|
`Deno support is experimental. Some features of ${name}, ${name} mods and ${name} server-side JavaScript may not work as expected.`
|
||||||
|
);
|
||||||
}
|
}
|
||||||
if (cluster.isPrimary === undefined)
|
if (cluster.isPrimary === undefined)
|
||||||
serverconsole.locwarnmessage(
|
serverconsole.locwarnmessage(
|
||||||
|
|
Reference in a new issue