From b579c277d0f71c10858cdd1a9a374ff7f29c6b0e Mon Sep 17 00:00:00 2001 From: Dmitry Patsura Date: Mon, 24 Oct 2022 17:45:21 +0300 Subject: [PATCH] cubestore type --- .../src/orchestrator/QueryOrchestrator.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cubejs-query-orchestrator/src/orchestrator/QueryOrchestrator.ts b/packages/cubejs-query-orchestrator/src/orchestrator/QueryOrchestrator.ts index 9864c73df9e89..78d8adbb1e04e 100644 --- a/packages/cubejs-query-orchestrator/src/orchestrator/QueryOrchestrator.ts +++ b/packages/cubejs-query-orchestrator/src/orchestrator/QueryOrchestrator.ts @@ -8,7 +8,7 @@ import { DriverFactory, DriverFactoryByDataSource } from './DriverFactory'; import { RedisQueueEventsBus } from './RedisQueueEventsBus'; import { LocalQueueEventsBus } from './LocalQueueEventsBus'; -export type CacheAndQueryDriverType = 'redis' | 'memory'; +export type CacheAndQueryDriverType = 'redis' | 'memory' | 'cubestore'; export enum DriverType { External = 'external',