From 53e22acffbfe7f3eb4edbbefeb94a73725520573 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Tue, 2 Dec 2025 11:12:05 -0500 Subject: [PATCH] fix: remove hardcoded name for sentinel, #13794 --- src/database/redis/connection.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/database/redis/connection.js b/src/database/redis/connection.js index 7f0b1912f8..41a9243355 100644 --- a/src/database/redis/connection.js +++ b/src/database/redis/connection.js @@ -22,7 +22,6 @@ connection.connect = async function (options) { const sentinelRootNodes = options.sentinels.map(sentinel => ({ host: sentinel.host, port: sentinel.port })); cxn = createSentinel({ ...options.options, - name: 'sentinel-db', sentinelRootNodes, }); } else if (redis_socket_or_host && String(redis_socket_or_host).indexOf('/') >= 0) {