From be8122bc0dd4232b9c2dc181f522fc54efb2631d Mon Sep 17 00:00:00 2001 From: Leonardo Cabeza Date: Tue, 27 Feb 2024 03:45:34 -0500 Subject: [PATCH] Update redis.md (#6519) Fix ioredis options url --- www/apps/docs/content/development/events/modules/redis.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/apps/docs/content/development/events/modules/redis.md b/www/apps/docs/content/development/events/modules/redis.md index 3c99130b92..68a249169a 100644 --- a/www/apps/docs/content/development/events/modules/redis.md +++ b/www/apps/docs/content/development/events/modules/redis.md @@ -76,7 +76,7 @@ Other available options include: - `queueName`: a string indicating the name of the BullMQ queue. By default, it’s `events-queue`. - `queueOptions`: an object containing options for the BullMQ queue. You can learn about available options in [BullMQ’s documentation](https://api.docs.bullmq.io/interfaces/QueueOptions.html). By default, it’s an empty object. -- `redisOptions`: an object containing options for the Redis instance. You can learn about available options in [io-redis’s documentation](https://luin.github.io/ioredis/index.html#RedisOptions). By default, it’s an empty object. +- `redisOptions`: an object containing options for the Redis instance. You can learn about available options in [io-redis’s documentation](https://redis.github.io/ioredis/index.html#RedisOptions). By default, it’s an empty object. ---