From 57f6deaa0a738a00c08bb0f412530beedbdb7964 Mon Sep 17 00:00:00 2001 From: fsvreddit <97185438+fsvreddit@users.noreply.github.com> Date: Thu, 26 Mar 2026 08:55:59 +0000 Subject: [PATCH] Rename incorrectly named function hMGetAllChunked --- src/devvit/redis.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devvit/redis.ts b/src/devvit/redis.ts index d2fba4c..4c2bffd 100644 --- a/src/devvit/redis.ts +++ b/src/devvit/redis.ts @@ -89,7 +89,7 @@ export async function hMGetAsRecord (redis: RedisClient, key: string, fields: st * @param chunkSize The size of each chunk. * @returns {Record} An object with field-value pairs for the specified fields. */ -export async function hMGetAllChunked (redis: RedisClient, key: string, chunkSize = 5000): Promise> { +export async function hGetAllChunked (redis: RedisClient, key: string, chunkSize = 5000): Promise> { const fields = await redis.hKeys(key); if (fields.length === 0) { return {};