mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 14:07:38 -07:00
Make info
This commit is contained in:
parent
2809b0b940
commit
3562210955
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ export default async (job: Bull.Job): Promise<void> => {
|
||||||
// TODO: いちいちデータベースにアクセスするのはコスト高そうなのでどっかにキャッシュしておく
|
// TODO: いちいちデータベースにアクセスするのはコスト高そうなのでどっかにキャッシュしておく
|
||||||
const instance = await Instance.findOne({ host: host.toLowerCase() });
|
const instance = await Instance.findOne({ host: host.toLowerCase() });
|
||||||
if (instance && instance.isBlocked) {
|
if (instance && instance.isBlocked) {
|
||||||
logger.warn(`Blocked request: ${host}`);
|
logger.info(`Blocked request: ${host}`);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue