fix tickFetch and tickResolve not being imported

This commit is contained in:
nelle 2024-08-03 17:46:02 -06:00
parent 4223521452
commit d8bee9a30c
2 changed files with 2 additions and 0 deletions

View file

@ -27,6 +27,7 @@ import { shouldBlockInstance } from "@/misc/should-block-instance.js";
import { apLogger } from "@/remote/activitypub/logger.js";
import { In, IsNull, Not } from "typeorm";
import renderBite from "@/remote/activitypub/renderer/bite.js";
import { tickResolve } from "@/metrics.js";
export default class Resolver {
private history: Set<string>;

View file

@ -37,6 +37,7 @@ import { serverLogger } from "./index.js";
import config from "@/config/index.js";
import Koa from "koa";
import renderBite from "@/remote/activitypub/renderer/bite.js";
import { tickFetch } from "@/metrics.js";
// Init router
const router = new Router();