Default meilisearch data response + linting + prettyfier

This commit is contained in:
PrivateGER 2023-05-26 10:55:51 +02:00 committed by PrivateGER
parent 5dd106e956
commit a9889721ec
3 changed files with 13 additions and 6 deletions

View File

@ -85,6 +85,10 @@ async function meilisearchStatus() {
if (meilisearch) { if (meilisearch) {
return meilisearch.serverStats(); return meilisearch.serverStats();
} else { } else {
return null; return {
health: "unconfigured",
size: 0,
indexed_count: 0,
};
} }
} }

View File

@ -1,8 +1,8 @@
import type Bull from "bull"; import type Bull from "bull";
import { queueLogger } from "../../logger.js"; import {queueLogger} from "../../logger.js";
import { Notes } from "@/models/index.js"; import {Notes} from "@/models/index.js";
import { MoreThan } from "typeorm"; import {MoreThan} from "typeorm";
import {index} from "@/services/note/create.js"; import {index} from "@/services/note/create.js";
import {Note} from "@/models/entities/note.js"; import {Note} from "@/models/entities/note.js";
import meilisearch from "../../../db/meilisearch.js"; import meilisearch from "../../../db/meilisearch.js";

View File

@ -34,7 +34,6 @@ export default define(meta, paramDef, async () => {
total: fsStats[0].size, total: fsStats[0].size,
used: fsStats[0].used, used: fsStats[0].used,
}, },
meilisearch: meilisearchStats,
}; };
}); });
@ -42,6 +41,10 @@ async function meilisearchStatus() {
if (meilisearch) { if (meilisearch) {
return meilisearch.serverStats(); return meilisearch.serverStats();
} else { } else {
return null; return {
health: "unconfigured",
size: 0,
indexed_count: 0,
};
} }
} }