From 89ad0ca566f222368f2346a539dff0a057985a83 Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 5 Sep 2019 13:05:57 +0200 Subject: [PATCH] Fix handleClientsBlockedOnKeys() names in comments. --- src/blocked.c | 2 +- src/t_list.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blocked.c b/src/blocked.c index 1db657869..9c3907fd4 100644 --- a/src/blocked.c +++ b/src/blocked.c @@ -592,7 +592,7 @@ void unblockClientWaitingData(client *c) { * the same key again and again in the list in case of multiple pushes * made by a script or in the context of MULTI/EXEC. * - * The list will be finally processed by handleClientsBlockedOnLists() */ + * The list will be finally processed by handleClientsBlockedOnKeys() */ void signalKeyAsReady(redisDb *db, robj *key) { readyList *rl; diff --git a/src/t_list.c b/src/t_list.c index 601ea8899..9bbd61de3 100644 --- a/src/t_list.c +++ b/src/t_list.c @@ -606,7 +606,7 @@ void rpoplpushCommand(client *c) { * Blocking POP operations *----------------------------------------------------------------------------*/ -/* This is a helper function for handleClientsBlockedOnLists(). It's work +/* This is a helper function for handleClientsBlockedOnKeys(). It's work * is to serve a specific client (receiver) that is blocked on 'key' * in the context of the specified 'db', doing the following: *