GET非対応APIにGETでリクエストすると接続が開きっぱなしになる

Fix #9404
This commit is contained in:
syuilo 2022-12-24 13:55:50 +09:00
parent adbeff3a28
commit 4ede367c1e
1 changed files with 2 additions and 0 deletions

View File

@ -82,6 +82,7 @@ export class ApiServerService {
}>('/' + endpoint.name, (request, reply) => { }>('/' + endpoint.name, (request, reply) => {
if (request.method === 'GET' && !endpoint.meta.allowGet) { if (request.method === 'GET' && !endpoint.meta.allowGet) {
reply.code(405); reply.code(405);
reply.send();
return; return;
} }
@ -95,6 +96,7 @@ export class ApiServerService {
}>('/' + endpoint.name, (request, reply) => { }>('/' + endpoint.name, (request, reply) => {
if (request.method === 'GET' && !endpoint.meta.allowGet) { if (request.method === 'GET' && !endpoint.meta.allowGet) {
reply.code(405); reply.code(405);
reply.send();
return; return;
} }