Skip to content

Commit 6b48c65

Browse files
authored
fix: Allow to specify cubestore as cacheAndQueueDriver from config, fix #6279 (#6280)
1 parent 03be6d2 commit 6b48c65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cubejs-server-core/src/core/optionsValidate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const schemaOptions = Joi.object().keys({
6060
externalDialectFactory: Joi.func(),
6161
externalDriverFactory: Joi.func(),
6262
//
63-
cacheAndQueueDriver: Joi.string().valid('redis', 'memory'),
63+
cacheAndQueueDriver: Joi.string().valid('cubestore', 'redis', 'memory'),
6464
contextToAppId: Joi.func(),
6565
contextToOrchestratorId: Joi.func(),
6666
contextToDataSourceId: Joi.func(),

0 commit comments

Comments
 (0)