From d497830596891e5b1c52a6dc2bf17d25f20fad1c Mon Sep 17 00:00:00 2001 From: Matthew Orris <1466844+mattheworris@users.noreply.github.com> Date: Thu, 8 Aug 2024 10:16:13 -0600 Subject: [PATCH] chore: Update Redis cache key prefix in content publishing worker module --- services/content-publishing/apps/worker/src/worker.module.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/content-publishing/apps/worker/src/worker.module.ts b/services/content-publishing/apps/worker/src/worker.module.ts index f7fd8da7..3197fe85 100644 --- a/services/content-publishing/apps/worker/src/worker.module.ts +++ b/services/content-publishing/apps/worker/src/worker.module.ts @@ -19,7 +19,7 @@ import { RequestProcessorModule } from './request_processor/request.processor.mo { imports: [ConfigModule], useFactory: (configService: ConfigService) => ({ - config: [{ url: configService.redisUrl.toString() }], + config: [{ url: configService.redisUrl.toString(), keyPrefix: configService.cacheKeyPrefix }], }), inject: [ConfigService], },