From 6e6ab615f187dc7f43e3de8da2cf1f8704c55edc Mon Sep 17 00:00:00 2001 From: Matthew R Date: Sat, 23 Jan 2021 18:02:54 -0500 Subject: [PATCH] handover handling of storage daemon to cron --- src/intervals/storage.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/intervals/storage.ts b/src/intervals/storage.ts index ebd669e..95a6ec4 100644 --- a/src/intervals/storage.ts +++ b/src/intervals/storage.ts @@ -6,6 +6,7 @@ import { Client } from '../class'; let interval: NodeJS.Timeout; export default async function storage(client: Client) { + return; async function determineInterval(client0: Client) { const accounts = await client0.db.Account.countDocuments(); return (accounts * 2) * 60000;