fix: reject unknown ready plugin properties (#8119)

Signed-off-by: immanuwell <pchpr.00@list.ru>
This commit is contained in:
Immanuel Tikhonov
2026-05-21 23:29:59 +04:00
committed by GitHub
parent 3e762bc603
commit 1fbc686758
2 changed files with 11 additions and 1 deletions

View File

@@ -58,6 +58,13 @@ ready localhost:1234 {
input: `
ready localhost:1234 {
monitor 404
}`,
shouldErr: true,
},
{
input: `
ready {
monitro continuously
}`,
shouldErr: true,
},