fix: unspecified onnxruntime version

This commit is contained in:
alikia2x (寒寒) 2025-02-22 21:17:18 +08:00
parent b14a43f63f
commit bdbd2ac748
Signed by: alikia2x
GPG Key ID: 56209E0CCD8420C6
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@
"@bull-board/express": "npm:@bull-board/express",
"express": "npm:express",
"src/": "./src/",
"onnxruntime": "npm:onnxruntime-node",
"onnxruntime": "npm:onnxruntime-node@1.20.1",
"chalk": "npm:chalk"
},
"compilerOptions": {

View File

@ -5,7 +5,7 @@ import logger from "lib/log/logger.ts";
import { getVideoTagsWorker } from "lib/mq/exec/getVideoTags.ts";
import { getVideoTagsInitializer } from "lib/mq/exec/getVideoTags.ts";
import { lockManager } from "lib/mq/lockManager.ts";
import { WorkerError } from "../lib/mq/schema.ts";
import { WorkerError } from "lib/mq/schema.ts";
Deno.addSignalListener("SIGINT", async () => {
logger.log("SIGINT Received: Shutting down workers...", "mq");