From 7a0e50a76409090ab84cbea1d8a0759426c1e4b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Gerhard=20Lindesva=CC=88rd?= Date: Fri, 20 Sep 2024 09:38:49 +0200 Subject: [PATCH] fix(buffer): use correct name --- packages/db/src/buffers/bot-buffer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/db/src/buffers/bot-buffer.ts b/packages/db/src/buffers/bot-buffer.ts index 0d820b36..ec0a675d 100644 --- a/packages/db/src/buffers/bot-buffer.ts +++ b/packages/db/src/buffers/bot-buffer.ts @@ -5,7 +5,7 @@ import { RedisBuffer } from './buffer'; type BufferType = IClickhouseBotEvent; export class BotBuffer extends RedisBuffer { constructor() { - super(TABLE_NAMES.events, 500); + super(TABLE_NAMES.events_bots, 500); } protected async insertIntoDB(items: BufferType[]): Promise {